@charset "UTF-8";

/* Калькулятор калорий - дополнительные стили */

.activity-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-option {
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.activity-option:hover {
    background: #e8e8e8;
}

.activity-option.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.activity-option strong {
    font-size: 1.05em;
}

.activity-option span {
    font-size: 0.9em;
    opacity: 0.8;
}

.result-main .calorie-value {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #667eea;
}

.result-main .calorie-label {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.result-main .calorie-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.goal-block.goal-maintain {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left-color: #50C878;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.2);
}

.goal-block.goal-maintain .goal-value {
    color: #2e7d32;
}

/* Табы */
.result-tabs {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 40px;
    margin-bottom: 20px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: #667eea;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .result-main .calorie-value {
        font-size: 3em;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-btn {
        text-align: left;
        padding: 12px 15px;
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 0;
        margin-left: -40px;
        padding-left: 43px;
    }
    
    .tab-btn.active {
        border-bottom-color: transparent;
        border-left-color: #667eea;
        background: #f9f9f9;
    }
    
    .result-tabs {
        padding: 25px 20px;
    }
}