.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 5px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0;
}

.stat-card small {
    color: #95a5a6;
    font-size: 0.8rem;
}

#dashboard .card {
    border-left: 5px solid var(--accent-color);
}

#dashboard .card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

#dashboard .card p {
    line-height: 1.6;
    color: #555;
}