:root {
    --pms-bg: #f4f6f9;
}

body {
    background-color: var(--pms-bg);
}

/* Login */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.brand-badge {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Global loading overlay */
#pms-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* Dashboard stat cards */
.stat-card {
    border: none;
    border-radius: .75rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-card .stat-label {
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .5px;
    opacity: .8;
}

.table-wrap {
    background: #fff;
    border-radius: .5rem;
    padding: 1rem;
}

.page-title {
    font-weight: 600;
}

/* Status badges */
.badge-status-NEW { background-color: #6c757d; }
.badge-status-APPROVED { background-color: #0d6efd; }
.badge-status-DISPATCHED { background-color: #fd7e14; }
.badge-status-DELIVERED { background-color: #198754; }
.badge-status-CANCELLED { background-color: #dc3545; }
