.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 9vh;
    background: #ffffff;
    width: 100%;
    padding: 0 10%;
}

.MSILlogo1 {
    margin-left: 20px;
    width: 290px;
    cursor: pointer;
}

.DElogo1 {
    margin-right: 20px;
    width: 115px;
    height: fit-content;
}

/* Submit Button Styles */
.green {
    background-color: #4CAF50 !important;
    /* Green background */
    color: white !important;
    /* White text */
    text-align: center !important;
    /* Center text */
    display: inline-block !important;
    /* Make the button inline-block */
    border-radius: 8px !important;
    /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition */
    border: none !important;
}

/* Hover Effect */
.green:hover {
    background-color: #45a049;
    /* Darker green on hover */
    transform: scale(1.05);
    /* Slightly enlarge the button */
}

/* Active State (when clicked) */
.green:active {
    background-color: #3e8e41;
    /* Even darker green on click */
    transform: scale(0.98);
    /* Slightly shrink when clicked */
}

.save-btn,
.next-btn {
    transition: background-color 0.2s ease, transform 0.2s ease;
    /* Smooth transition */
}

.save-btn:hover,
.next-btn:hover {
    transform: scale(1.05);
    transition: ease-in 0.2s;
    /* Slightly enlarge the button */
}


/* Fullscreen overlay to blur the background */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    /* Semi-transparent background */
    backdrop-filter: blur(5px);
    /* Blur effect */
    z-index: 9999;
    /* Ensure it's on top of all other elements */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner Styles */
#loadingIndicator {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    /* Optional, gives the indicator a white background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#loadingIndicator .spinner {
    border: 12px solid #f3f3f3;
    border-top: 12px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    /* Centers the spinner above the text */
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loadingIndicator p {
    font-size: 18px;
    color: #333;
}


.left_header li .user_wrap {
    display: inline-grid;
    position: relative;
    padding: 0 40px 0 20px;
    text-align: left;
    color: black;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}

.left_header {
    display: flex;
    align-items: center;
}

.left_header li {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.left_header li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .5);
    width: 1px;
    height: 36px;
}

.left_header li:first-child:before {
    display: none;
}

.left_header li:first-child {
    padding-left: 0;
}

.left_header li:last-child {
    padding-right: 0;
}

.left_header li .user_pic {
    width: 40px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.left_header li span {
    display: block;
    font-weight: 700;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans';
}

.sup {
    color: red;
}

.topics_button {
    font-weight: 600;
    font-size: 17px;
    margin: 10px 5px;
    flex: 1;
    min-width: 230px;
    height: 72px;
    border-radius: 10px;
    background: tomato;
    /* Softer red color */
    color: white;
    border: none;
    opacity: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Add hover effect */
.topics_button:hover {
    background-color: lightcoral;
    /* Light, calming shade */
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

/* Active button styling */
.topics_button.active {
    font-size: 19px;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.3);
    filter: brightness(85%);
    /* Reduce brightness by 15% to make color darker */
}


.legend {
    margin-top: 5px;
    margin-bottom: 5px;
    /* border: 1px solid #ccc; */
    padding: 16px;
    /* background-color: #f9f9f9; */
    border-radius: 5px;
    z-index: 1000;
    width: 100%;
    text-align-last: center;
}

.legend h4 {
    margin: 10px 0;
    /* Adjust margin as needed */
    font-weight: normal;
    /* Adjust font weight for readability */
}

.legend span {
    margin-right: 10px;
    /* Add some space between legend items */
}
.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 200,
  'opsz' 28
}

.submitMsg{
    margin-top: 10px;
    font-size: 20px;
}

.disclaimer{
    font-weight: bolder;
    font-size: 18px;
}

#scrollToBottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1da7ff; /* Bright blue color */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for floating effect */
    opacity: 0.9;
}

#scrollToBottom:hover {
    opacity: 1;
}
.table-heading{
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0;
    padding-left: 10px;
}