
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stat-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(15,47,150,0.08);
    padding: 1.5rem;
    border-left: 4px solid #0b8f1e;
}

    .stat-card h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #0b8f1e;
        margin: 0 0 4px 0;
    }

    .stat-card p {
        color: #6b7395;
        font-size: 0.9rem;
        margin: 0;
    }

    
    .stat-card:nth-child(even) {
        border-left-color: #0f2f96;
    }

        .stat-card:nth-child(even) h3 {
            color: #0f2f96;
        }


.admin-welcome {
    background: #2c3e5e;
    color: white;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

    .admin-welcome h1 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0 4px 0;
        color: white;
    }

    .admin-welcome p {
        margin: 0;
        opacity: 0.85;
        font-size: 0.95rem;
    }


.admin-section-divider {
    border: 0;
    border-top: 1px solid #e3e8f3;
    margin: 2rem 0;
}
