body{
    margin: 0px;
    padding: 0px;
    height: 100vh;
    overflow: hidden;
}


p,h1,h2,h3,h4,h5,h6{
    margin: 0px;
    padding: 0px;
    font-family: Fira Sans;
}

.Outer_div{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(/Background.svg);
    height: 100vh;
}

.Container{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(110.46deg, rgba(139, 209, 222, 0.65) 5.51%, rgba(176, 192, 216, 0.325) 34.2%, rgba(19, 84, 206, 0.325) 77.47%, rgba(76, 249, 255, 0.2925) 103.47%);
}

.Footer_child{
    display: flex;
    padding: 10px;
    align-content: center;
    justify-content: center;
    background-color: white;
    border-radius: 50px;
    border: 1px solid #2D3494;
    width: 40px;
    height: 40px;
    margin-bottom: 25px;
}

.Form{
    width: 92%;
    margin: 0px auto;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.Button_Container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-self: center;
    align-content: center;
    justify-self: center;
    margin: auto;
    column-gap: 25px;
}

.Button_1{
    width: 200px;
    height: 200px;
    background-color: white;
    box-shadow: 0px 9px 84.5px 17px #0000000F;
    border-radius: 15px;
    border: 0px;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-top: 20px; 
}

/*

Add Payment Details Page 

*/

.Payment_form{
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 25px;
}

.Sub_Payment_form{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.Sub_Payment_form label{
    font-size: 18px;
    font-family: roboto;
}

input, .selectoption{
    border: 0px;
    border-radius: 5px;
    background-color: white;
    height: 35px;
}

.Button_NavBar{
    display: flex;
    flex: 1;
    align-items: flex-end;
    justify-content: center;
    column-gap: 15px;
}

.Button_NavBar button{
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: Fira Sans;
    font-size: 18px;
    width: 150px;
}

.buttons{
    color: white;
    border: none;
    border-radius: 5px;
    font-family: Fira Sans;
    font-size: 18px;
}

.Blue_button{
    background: #2D3494;
}

.Arrow_Button_styling{
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
    align-self: center;
    align-content: center;
    background-color: white;
    padding: 5px;
    border-radius: 50px;
    width: 25px;
    height: 25px;
}

.SkyBlue_button{
    background: #006DFF;

}

.Black_button{
    background-color: black;
}

#overlay_File_Upload , #overlay_Approval{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 1000;
  }

/* #File_Upload_content, #Approval_content{
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
    overflow: auto;
    border-radius: 15px;
    text-align: center;
    width: 30%;
    height: 35%;
  } */

/* Disable scrolling when model is active */
    
body.model-active1{
    overflow: hidden;
}
    
    input:read-only {
           background-color: LIGHTgrey;
           cursor: not-allowed;
    }
    
    
    /* Animations in New Ticket */
    
    /* Enter animation */
    
    .overlay.active .overlay-content {
        animation: slideIn 1.5s forwards;
    }
    
    /* Exit animation */
    
    .overlay.closing .overlay-content {
        animation: slideOut 1.5s forwards;
    }
        /* Overlay visibility */
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
    
        /* Disable background scrolling */
    
        body.no-scroll {
            overflow: hidden;
        }

/*     View Payment Details Styling     */


.scroll-wrapper {
    width: 100%;
    margin-top: 25px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.table-container {
    overflow-x: auto;
    margin-top: 10px !important;
    scrollbar-width: auto; /* Hide default scrollbar */
    align-content: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
   max-height:50vh;
}

.table thead th{
    vertical-align: middle;
}

th{
    background: #006DFF !important;
    height: auto;
    color: white;
    vertical-align: top;
    font-family: Fira Sans;
    font-weight: 500;
}

tr{
    background: #D7E6FF;
    height: 50px;
    font-family: roboto;
}

.table-container td{
    border: 1px solid white !important;
    width: 150px;
    vertical-align: middle;
}

p{
  margin: 0px !important;
  font-size: 16px !important;
  font-family: Fira Sans !important;
}

a:not(.btn):hover {
    text-decoration: none !important;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  .overlay-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    min-width: 25%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }

  .overlay p {
    font-size: 20px;
    font-family: 'Fira Sans', sans-serif;
    margin-bottom: 20px;
  }

  .file-name {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
  }

  .Blue_button1{
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 5px;
    font-family: Fira Sans;
    font-size: 18px;
    margin-top: 20px;
    min-width: 70px;
    background: #2D3494;
  }


  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Popup container */
  .popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s;
  }
  
  .popup-overlay.active .popup {
    transform: scale(1);
  }
  
  /* Loading spinner */
  .spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    border-top-color: #4f46e5;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .popup-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
  }
  
  .popup-message {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
  }

  #Table_Body{
    margin-top: 0px !important;
    margin-bottom: 0px;
  }