/* Instellingen – dashboard style */

/* ===================
   HEADER STATS SECTION
   =================== */

.settings-header-card {
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(0, 48, 130, 0.06), #ffffff 60%);
    border: 1px solid var(--border);
}

.settings-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.settings-header-title h2 {
    margin: 6px 0 0;
    font-size: 1.2rem;
}

/* Reuse badge style */

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.badge-soft {
    background: rgba(0, 48, 130, 0.06);
    color: var(--brand-blue);
}

/* Stats chips */

.settings-header-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-chip {
    background: rgba(0, 48, 130, 0.04);
    border-radius: 999px;
    padding: 6px 10px;
    display: inline-flex;
    flex-direction: column;
    min-width: 90px;
}

.stat-chip-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.stat-chip-value {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ============
   SETTINGS GRID
   ============ */

.settings-grid {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

/* Desktop: 2 columns (so 4 items = 2 rows) */

@media (min-width: 880px) {
    .settings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.settings-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Inline km-prijs form */

.settings-inline-form {
    align-items: flex-end;
    gap: 8px;
}

.settings-inline-form label {
    font-size: 0.85rem;
}

.settings-inline-form input[type="number"] {
    max-width: 140px;
}

/* Vehicle image */

.vehicle-image {
    margin-top: 8px;
    max-width: 100%;
    border-radius: 12px;
}

/* Dutch licence plate style */

.license-plate-nl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    border: 2px solid #111;
    background: #fbc617;
    /* Dutch yellow */
    color: #111;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.25);
}

/* Tiny text hints */

.small-hint {
    margin-top: 8px;
}

/* Vehicle name inline with plate */

.vehicle-name {
    font-weight: 400;
    color: var(--text);
    opacity: 0.9;
    margin-left: 4px;
    font-size: 1rem;
}

/* ==========================
   MOBILE MEDIA QUERIES
   ========================== */

@media (max-width: 700px) {
    .settings-header-top {
        align-items: flex-start;
    }

    .settings-header-title h2 {
        font-size: 1.1rem;
    }

    .settings-inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .settings-inline-form input[type="number"] {
        max-width: 100%;
    }

    .settings-grid {
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .settings-card {
        padding: 16px;
    }
}