/* progress bar styles */
.progress {
    height: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color: #006666;
    color: white;
    text-align: center;
    line-height: 20px;
    transition: width 0.5s ease;
}
/* Custom styles for question buttons on survey page*/
.question-button {
    color: #006666;
    background-color: transparent;
    border-color: #006666;
    transition: all 0.3s ease;
    max-width: 300px;
    white-space: normal;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.question-button:hover,
.question-button:focus {
    color: #004222; /* Change the text color on hover to #004222 */
    background-color: transparent;
    border-color: #006666;
    font-weight: bold;
}

.question-button.active {
    color: white;
    background-color: #004d4d;
    border-color: #004d4d;
}

.question .question-button.active {
    color: white;
    background-color: #004222;
    border-color: #004222;
}
