/* ============================================
   UN-IKO - Supplier Area Overrides
   Extends admin.css with supplier-specific styles
   ============================================ */

/* --- Sidebar color override --- */
.supplier-page .admin-sidebar {
    background: #1a3558;
}

/* --- Active menu item: teal/green accent --- */
.supplier-page .admin-sidebar__nav a.active {
    background: #2dd4bf;
    color: #0f172a;
}

.supplier-page .admin-sidebar__nav a.active svg {
    stroke: #0f172a;
}

.supplier-page .admin-sidebar__nav a:hover:not(.active) {
    background: rgba(45, 212, 191, 0.12);
}

/* ============================================
   Supplier Stat Cards
   ============================================ */
.supplier-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

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

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

.supplier-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.supplier-stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.supplier-stat-card__value {
    font-size: 2rem;
    font-weight: 700;
    color: #132744;
    margin-bottom: 4px;
}

.supplier-stat-card__label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ============================================
   Supplier Chart Card
   ============================================ */
.supplier-chart-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.supplier-chart-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.supplier-chart-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #132744;
}
