/* General layout and structure */
#service-questionnaire {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Step-by-Step Indicators */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-bottom: 4px solid #ddd;
    font-weight: bold;
    color: #aaa;
}

.step.active {
    color: #8bc34a;
    border-bottom: 4px solid #8bc34a;
}

/* Question blocks styled as cards */
.question-block {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.question-block.active {
    display: block;
}

/* Buttons */
.start-questionnaire-button,
.proceed-button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #F0F0F0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.start-questionnaire-button:hover,
.proceed-button:hover {
    background-color: #388E3C;
}

/* Dropdowns */
select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Icons for each action */
.option-icon {
    margin-right: 10px;
    vertical-align: middle;
}

/* Add some fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
/* Cancel button style */
.cancel-questionnaire-button {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: 0;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.cancel-questionnaire-button:hover {
    color: #333;
}

/* Step Indicator */
.step-indicator {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

/* Other styling remains the same */

