* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
input[readonly="true"]{
    background-color: #e6e6e6;
}
body {
    background-color: #f2f5fa;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
    background: #ffffff;
    width: 100%;
}

.MSILlogo {
    margin-left: 77px;
    max-width: 361px;
    width: 30%;
}

.DElogo {
    max-width: 146px;
    width: 30%;
}

.profilepic {
    margin-left: 20px;
    max-width: 51px;
    width: 30%;
    border-radius: 100px;
}

.rightsec {
    width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 77px;
}
.datepicker{
    color :white;
}
.spacerdiv {
    height: 41px;
    width: 1px;
    background-color: #b9b9b9;
}

.drpdown {
    margin-left: 20px;
    width: 30px;
    height: 30px;
}

.idname,
.idno {
    display: block;
    color: #2d3393;
    font-size: 16px;
    margin: 0;
}
@media screen and (max-width: 840px) {
    
    .rightsec {
        margin-right: 10px;
    }
    .MSILlogo {
        margin-left: 10px;
    }
}
@media screen and (max-width: 600px) {
    .idname,
    .idno {
        display: none;
    }
    .rightsec {
        width: 400px;
    }
}
.idno {
    font-weight: 600;
}
.columnBlockLayout {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding: 0px !important;
}

a:not(.btn):hover {
    text-decoration: none !important;
}

/* For screens with a 100% scale */
@media (max-resolution: 96dpi) {
    input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="number"],
    .form-control1-select{
            width: 540px !important;
        }

        #dateInput,.slotbox{
            width: 560px !important;
        }

        .sloti{
            width: 540px !important;    
         }

    }
    
    /* For screens with a 125% scale */
    @media (min-resolution: 120dpi) {
        input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="number"],
    .form-control1-select{
            width: 430px !important;
        }
        
        #dateInput,.slotbox{
            width: 400px !important;
        }

        .sloti{
            width: 380px !important;    
         }
    }

     /* For screens with a 150% scale */
     @media (min-resolution: 144dpi) {
        input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="number"],
    .form-control1-select{
            width: 320px !important;
        }

        #dateInput,.slotbox{
            width: 400px !important;
        }

        .sloti{
            width: 380px !important;    
         }
    }
    
    /* For screens with a 175% scale */
    @media (min-resolution: 168dpi) {
        input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="number"],
    .form-control1-select{
            width: 320px !important;
        }

        #dateInput,.slotbox{
            width: 400px !important;
        }

        .sloti{
            width: 380px !important;    
         }
    }


    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); 
        z-index: 2;
      }
      
      
      .popup-container {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 50px;
        border: 1px solid #ccc;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        z-index: 2;
        text-align: center;
        font-family: Arial, sans-serif;
        border-radius: 15px;
      }
      
      .popup-message {
        margin-bottom: 40px; 
        font-size: 20px;
        font-family: sans-serif;
        font-weight: 700 !important; 
        color: #333; 
        text-align: center; 
        line-height: 1.5; 
      }
      
      .popup-button {
        background-color:black;
        color: white !important;
        border: none;
        cursor: pointer;
        width: 150px; 
        height: 46px; 
        font-weight: 500;
        font-size: 20px; 
        border-radius: 40px; 
        transition: background-color 0.3s ease;
      }
      
      
      .popup-button:hover {
        background-color: black;
      }

      #overlay1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        /* Semi-transparent black */
        z-index: 999;
        /* Ensure it's above other content */
        display: none;
        /* Initially hidden */
      }
      
      /* Style for the loading spinner */
      #spinner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 24px;
        text-align: center;
      }