/* Dashboard Specific Styles */

.summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.pro-card {
    background: linear-gradient(135deg, rgba(0, 209, 178, 0.1), rgba(74, 144, 226, 0.1));
    border: 1px solid rgba(0, 209, 178, 0.2);
}

.card-header {
    margin-bottom: 10px;
}

.label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-primary);
}

#ai-suggestion-text {
    font-size: 1rem;
    font-weight: 400;
}

.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-card .stat-value small {
    font-size: 1rem;
    opacity: 0.5;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px;
}

.stat-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Horizontal Scroll Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 15px;
}

.section-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

.text-btn {
    background: none;
    border: none;
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.meal-item {
    min-width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.meal-item.empty {
    border: 2px dashed var(--glass-border);
    cursor: pointer;
}

.meal-item.empty .add-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.meal-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Health Metrics */
.health-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.health-metric {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.metric-status {
    font-weight: 600;
}

.metric-status.normal {
    color: var(--success);
}

.metric-trend.down {
    color: var(--success);
    /* Losing weight is good if target */
}