/* ===== 건강 상태 선택 UI ===== */
.health-level-selector {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.health-level-selector h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.health-description {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

.health-level-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.health-level-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 140px;
}

.health-level-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.level-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.level-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.level-desc {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

/* 건강 상태별 테마 색상 */
.health-level-btn[data-level="상"]:hover {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.health-level-btn[data-level="중"]:hover {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-color: #ffc107;
}

.health-level-btn[data-level="하"]:hover {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #dc3545;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .health-level-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .health-level-btn {
        min-height: 120px;
        padding: 15px 10px;
    }
    
    .level-icon {
        font-size: 40px;
    }
    
    .level-title {
        font-size: 16px;
    }
    
    .level-desc {
        font-size: 12px;
    }
}
