.sleep-evaluation {
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 0 1rem;
}

.sleep-evaluation h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

.evaluation-container {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 2rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    width: 10%;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.875rem;
    color: var(--gray-800);
}

.question {
    margin-bottom: 2rem;
}

.question h3 {
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.options label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.options label:hover {
    border-color: var(--primary);
    background: var(--gray-100);
}

.options input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.score-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.score-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: scoreReveal 1s ease-out;
}

.score {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary);
}

.score-label {
    font-size: 1rem;
    color: var(--gray-800);
    text-align: center;
}

.recommendations {
    margin-top: 2rem;
}

.recommendations h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.recommendations ul {
    list-style: none;
}

.recommendations li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.recommendations li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

@keyframes scoreReveal {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .evaluation-container {
        padding: 1rem;
    }
    
    .options label {
        padding: 0.75rem;
    }
    
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .score {
        font-size: 3rem;
    }
}