/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

.logo-container > img {
    max-height: 70px !important;
    padding: 0px !important;
    
}

.top-container {
    margin-top: 20px !important;
    position: sticky !important;
}


.question-container {
    
    margin-bottom:0 !important;

}

.checkbox-label {
    display: block; /* Ensures it behaves as a block element */
    white-space: normal; /* Allows text wrapping */
    overflow-wrap: anywhere; /* Ensures words wrap properly */
    word-break: normal; /* Prevents words from breaking in the middle */
    hyphens: manual; /* Helps with word splitting if supported */
}

body {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: manual;
    font-family:Roboto, sans-serif;
}

.question-text {
    font-weight:600 !important;
    color:#064682;
    
}


.ls-answers .ls-heading  th {
    text-align: center !important;
}
.survey-progress {
    z-index: 1 !important;  /* Lower priority */
    position: relative;  /* Ensure it stays behind */
}

#main-dropdown {
    z-index: 1050 !important;  /* Higher than progress bar */
    position: absolute;  /* Ensure proper positioning */
}



