<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Cleaning Survey Component Styles */
.cleaning-survey {
    padding: 5vh 0;
    background: var(--off-white);
}

.survey-container {
    max-width: 80vw;
    margin: 0 auto;
}

.survey-card {
    background: var(--white);
    border-radius: 2vh;
    padding: 4vh;
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 192, 243, 0.1);
}

.survey-header {
    text-align: center;
    margin-bottom: 4vh;
}

.survey-header h3 {
    color: var(--deep-teal);
    font-size: 3vh;
    font-weight: 600;
    margin-bottom: 2vh;
}

.progress-bar {
    width: 100%;
    height: 1vh;
    background: #f0f0f0;
    border-radius: 0.5vh;
    overflow: hidden;
    margin-bottom: 2vh;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bright-aqua), var(--eco-green));
    width: 12.5%;
    transition: width 0.3s ease;
    border-radius: 0.5vh;
}

.question-counter {
    color: var(--text-dark);
    font-size: 1.8vh;
    margin: 0;
}

.survey-content {
    min-height: 40vh;
    position: relative;
}

.question-slide {
    display: none;
    animation: fadeIn 0.3s ease;
}

.question-slide.active {
    display: block;
}

.question-slide h4 {
    color: var(--deep-teal);
    font-size: 2.5vh;
    font-weight: 600;
    margin-bottom: 3vh;
    text-align: center;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.answer-btn {
    display: flex;
    align-items: center;
    padding: 2vh 3vh;
    border: 2px solid #e9ecef;
    border-radius: 1.5vh;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1.8vh;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.answer-btn:hover {
    border-color: var(--bright-aqua);
    background: rgba(0, 192, 243, 0.05);
    transform: translateY(-0.2vh);
}

.answer-btn.selected {
    border-color: var(--eco-green);
    background: var(--light-green);
    color: var(--deep-teal);
}

.answer-btn i {
    font-size: 2.5vh;
    margin-right: 2vh;
    color: var(--bright-aqua);
    min-width: 3vh;
}

.answer-btn.selected i {
    color: var(--eco-green);
}

.survey-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 4vh;
    padding-top: 3vh;
    border-top: 1px solid #e9ecef;
}

.survey-results {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.result-content {
    padding: 3vh 0;
}

.result-icon {
    font-size: 6vh;
    color: var(--eco-green);
    margin-bottom: 2vh;
}

.result-content h3 {
    color: var(--deep-teal);
    font-size: 3vh;
    font-weight: 600;
    margin-bottom: 3vh;
}

.recommendation-card {
    background: var(--off-white);
    border-radius: 1.5vh;
    padding: 3vh;
    margin: 3vh 0;
    border-left: 0.5vh solid var(--eco-green);
}

.recommendation-card h4 {
    margin-bottom: 2vh;
    font-size: 2.5vh;
}

.recommendation-card ul {
    list-style: none;
    padding: 0;
    margin: 2vh 0;
}

.recommendation-card li {
    padding: 0.5vh 0;
    font-size: 1.6vh;
}

.result-actions {
    margin-top: 3vh;
}

.result-actions .btn {
    margin: 1vh;
    padding: 1.5vh 3vh;
    font-size: 1.8vh;
    border-radius: 1vh;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .survey-container {
        max-width: 95vw;
    }
    
    .survey-card {
        padding: 3vh 2vh;
    }
    
    .survey-header h3 {
        font-size: 2.5vh;
    }
    
    .question-slide h4 {
        font-size: 2.2vh;
    }
    
    .answer-btn {
        padding: 2vh;
        font-size: 1.6vh;
    }
    
    .answer-btn i {
        font-size: 2vh;
        margin-right: 1.5vh;
    }
    
    .survey-navigation {
        flex-direction: column;
        gap: 2vh;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .result-actions .btn {
        width: 100%;
        max-width: 30vh;
        margin: 1vh 0;
    }
}
</pre></body></html>