/* app.css — Estilos customizados Consulta Veículos BA */

/* ── Paleta ──────────────────────────────────────────────── */
:root {
    --primary-dark: #0d3b66;
    --primary:      #1565c0;
    --accent:       #2196f3;
    --success:      #2e7d32;
    --bg-page:      #f4f6f9;
}

/* ── Geral ───────────────────────────────────────────────── */
body {
    background-color: var(--bg-page);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.92rem;
}

/* ── Navbar ──────────────────────────────────────────────── */
.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

nav.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* ── Login ───────────────────────────────────────────────── */
.login-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    min-height: 100vh;
}

.login-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff !important;
}

.login-icon i {
    color: #fff !important;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
    border-radius: 10px;
}

.card-header {
    border-bottom: 1px solid rgba(0,0,0,.06);
    border-radius: 10px 10px 0 0 !important;
}

/* ── Tabelas ─────────────────────────────────────────────── */
.table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6c757d;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
}

/* ── Badges ──────────────────────────────────────────────── */
.badge {
    font-weight: 500;
    font-size: 0.72rem;
    padding: 0.3em 0.6em;
}

/* ── Botões ──────────────────────────────────────────────── */
.btn-xs {
    padding: 0.15rem 0.4rem;
    font-size: 0.75rem;
}

/* ── Modal ───────────────────────────────────────────────── */
.modal-xl .modal-dialog {
    max-width: 1100px;
}

/* ── Display (métricas) ──────────────────────────────────── */
.display-6 {
    font-size: 2rem;
    line-height: 1.2;
}

/* ── Spinner overlay ─────────────────────────────────────── */
.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    z-index: 10;
}

/* ── Scrollbar suave ─────────────────────────────────────── */
.table-responsive {
    scrollbar-width: thin;
    scrollbar-color: #dee2e6 transparent;
}

/* ── Highlight linha nova ────────────────────────────────── */
@keyframes highlight-row {
    from { background-color: #e8f5e9; }
    to   { background-color: transparent; }
}

tr.novo {
    animation: highlight-row 2s ease-out;
}

/* ── Font monospace ──────────────────────────────────────── */
.font-monospace {
    font-size: 0.82rem;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
    font-size: 0.82rem;
}
