/* Stat Cards Design */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: #19231E; /* Dark theme for admin */
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.stat-card h3 {
    font-size: 14px;
    color: #789B86;
    margin-bottom: 10px;
}

.stat-card .number {
    font-size: 32px;
    font-weight: bold;
    color: #F4F1E8;
}

/* Order Badge */
.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}
.badge.pending { background: #B86B4B; color: white; }
.badge.completed { background: #183D32; color: white; }

/* Modern Form */
.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form input, .modern-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E4DED2;
    background: #FFFDF8;
    border-radius: 5px;
    font-family: inherit;
}