/* ===== Enhanced Profile Section Styles ===== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0,168,168,0.1), rgba(246,204,0,0.1));
    border-radius: 10px;
    transition: transform 0.2s;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #00A8A8;
    margin-bottom: 5px;
    font-family: 'Bree Serif', serif;
}

.stat-label {
    font-size: 0.85em;
    color: #666;
}

.activity-log, .next-steps {
    margin-top: 15px;
}

.activity-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 4px solid #00A8A8;
    font-size: 0.95em;
}

.next-step-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 4px solid #F6CC00;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.next-step-item:hover {
    background: #e8f5f7;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,168,168,0.15);
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
