/* ============================================================
   FlotteLog — Design System
   Navy #0b1628 / Orange #f47920 / Outfit
   Mobile-first, dark-themed professional app
   ============================================================ */

/* ---------- RESET & VARS ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Couleurs principales */
    --navy: #0b1628;
    --navy-light: #111f35;
    --navy-mid: #162740;
    --navy-surface: #1a2d47;
    --navy-border: #243650;

    --orange: #f47920;
    --orange-hover: #ff8c3a;
    --orange-muted: rgba(244, 121, 32, 0.15);
    --orange-glow: rgba(244, 121, 32, 0.08);

    --white: #ffffff;
    --text: #e8ecf1;
    --text-secondary: #8b99ad;
    --text-muted: #5a6b80;

    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.12);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.12);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.12);

    /* Espacements */
    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 32px;
    --sp-2xl: 48px;

    /* Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Typo */
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.8125rem;
    --text-base: 0.9375rem;
    --text-lg: 1.125rem;
    --text-xl: 1.375rem;
    --text-2xl: 1.75rem;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 200ms;

    /* Layout */
    --header-h: 56px;
    --sidebar-w: 260px;
    --bottom-nav-h: 64px;
}

/* ---------- BASE ---------- */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    background: var(--navy);
    overflow-x: hidden;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hover); }

img { max-width: 100%; display: block; }

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

::selection {
    background: var(--orange);
    color: var(--navy);
}

/* ---------- LOADER ---------- */
.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-md);
    background: var(--navy);
    transition: opacity 0.3s var(--ease);
}
.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--navy-border);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
.loader-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- LOGIN ---------- */
.login-wrapper {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--sp-xl) var(--sp-md);
}
.login-brand {
    text-align: center;
    margin-bottom: var(--sp-xl);
}
.login-logo { margin: 0 auto var(--sp-md); }
.login-brand h1 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}
.login-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-top: var(--sp-xs);
}
.login-form {
    width: 100%;
    max-width: 380px;
}
.login-divider {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    margin: var(--sp-lg) 0;
    color: var(--text-muted);
    font-size: var(--text-sm);
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--navy-border);
}
.login-footer-text {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: var(--sp-lg);
}

/* ---------- FORMS ---------- */
.field {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-md);
}
.field label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
}
.field input,
.field select,
.field textarea {
    background: var(--navy-light);
    border: 1.5px solid var(--navy-border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: var(--text);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-muted);
}
.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-muted);
}
.field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b99ad' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.field textarea { resize: vertical; min-height: 60px; }
.field-full { grid-column: 1 / -1; }
.input-upper { text-transform: uppercase; }

.field-computed {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: var(--sp-md) 0;
}
.computed-label { color: var(--text-secondary); font-size: var(--text-sm); }
.computed-value {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--orange);
}

.form-panel {
    padding: var(--sp-lg);
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--navy-border);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 var(--sp-md);
}
@media (min-width: 600px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-actions {
    display: flex;
    gap: var(--sp-sm);
    justify-content: flex-end;
    margin-top: var(--sp-lg);
    padding-top: var(--sp-lg);
    border-top: 1px solid var(--navy-border);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    padding: 10px 20px;
    font-weight: 500;
    font-size: var(--text-sm);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}
.btn-primary {
    background: var(--orange);
    color: var(--navy);
    font-weight: 600;
}
.btn-primary:hover { background: var(--orange-hover); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--navy-border);
}
.btn-outline:hover {
    border-color: var(--text-muted);
    background: var(--orange-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}
.btn-ghost:hover { color: var(--text); background: var(--orange-glow); }

.btn-danger {
    background: var(--danger);
    color: var(--white);
}
.btn-danger:hover { opacity: 0.9; }

.btn-block { width: 100%; }
.btn-sm { padding: 7px 14px; font-size: var(--text-xs); }

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--navy-surface);
    border-radius: var(--radius-sm);
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--duration) var(--ease);
}
.btn-back:hover { background: var(--navy-border); }

/* ---------- HEADER ---------- */
#app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: var(--navy);
    border-bottom: 1px solid var(--navy-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--sp-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
}
.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.header-icon:hover { color: var(--text); background: var(--navy-surface); }

#header-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
}
.header-badge {
    font-size: var(--text-xs);
    color: var(--text-muted);
    background: var(--navy-surface);
    padding: 4px 10px;
    border-radius: 100px;
    display: none;
}
@media (min-width: 600px) { .header-badge { display: inline-block; } }

.header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy-surface);
    border: 2px solid var(--navy-border);
    color: var(--orange);
    font-weight: 600;
    font-size: var(--text-xs);
    overflow: hidden;
}

/* ---------- SIDEBAR ---------- */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    z-index: 200;
    background: var(--navy-light);
    border-right: 1px solid var(--navy-border);
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.sidebar.open { transform: translateX(0); }

.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-md);
    border-bottom: 1px solid var(--navy-border);
}
.sidebar-brand {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--white);
}

.sidebar-nav {
    list-style: none;
    padding: var(--sp-sm);
    flex: 1;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: all var(--duration) var(--ease);
    margin-bottom: 2px;
}
.nav-link:hover {
    color: var(--text);
    background: var(--navy-surface);
}
.nav-link.active {
    color: var(--orange);
    background: var(--orange-muted);
}

.sidebar-footer {
    padding: var(--sp-md);
    border-top: 1px solid var(--navy-border);
}

/* Desktop: sidebar always visible */
@media (min-width: 1024px) {
    .sidebar {
        transform: translateX(0);
    }
    .sidebar-overlay { display: none; }
    #btn-menu { display: none; }
    #btn-close-sidebar { display: none; }
    #app-header { left: var(--sidebar-w); }
    #app-main { margin-left: var(--sidebar-w); }
    #bottom-nav { display: none; }
}

/* ---------- BOTTOM NAV (mobile) ---------- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--bottom-nav-h);
    background: var(--navy-light);
    border-top: 1px solid var(--navy-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 1024px) {
    .bottom-nav { display: none; }
}
.bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--duration) var(--ease);
    text-decoration: none;
}
.bnav-item.active { color: var(--orange); }
.bnav-item:hover { color: var(--text-secondary); }

/* ---------- FAB ---------- */
.fab {
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 16px + env(safe-area-inset-bottom, 0px));
    right: var(--sp-md);
    z-index: 90;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(244, 121, 32, 0.35);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(244, 121, 32, 0.5); }
.fab:active { transform: scale(0.95); }
@media (min-width: 1024px) { .fab { bottom: var(--sp-xl); } }

/* ---------- MAIN CONTENT ---------- */
#app-main {
    padding-top: var(--header-h);
    padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
    min-height: 100dvh;
}
@media (min-width: 1024px) {
    #app-main { padding-bottom: 0; }
}

.view {
    padding: var(--sp-lg) var(--sp-md);
    max-width: 960px;
    margin: 0 auto;
    animation: viewIn 0.25s var(--ease);
}
@keyframes viewIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
    margin-bottom: var(--sp-lg);
    flex-wrap: wrap;
}
.view-header h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}
.view-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    width: 100%;
}

/* ---------- STATS GRID ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
    margin-bottom: var(--sp-lg);
}
@media (min-width: 600px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: var(--sp-md);
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
}
.stat-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}
.stat-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ---------- CARDS ---------- */
.card {
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    margin-bottom: var(--sp-md);
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-md);
}
.card-header h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
}
.card-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--sp-lg);
    line-height: 1.6;
}
.link-small {
    font-size: var(--text-xs);
    color: var(--orange);
    font-weight: 500;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
}
@media (min-width: 600px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Vehicle / Conducteur card */
.item-card {
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: var(--sp-md);
    cursor: pointer;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.item-card:hover {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange-muted);
}
.item-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-sm);
}
.item-card-title {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--white);
}
.item-card-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 100px;
}
.badge-actif { background: var(--success-bg); color: var(--success); }
.badge-maintenance { background: var(--warning-bg); color: var(--warning); }
.badge-hors-service { background: var(--danger-bg); color: var(--danger); }
.badge-admin { background: var(--orange-muted); color: var(--orange); }
.badge-conducteur { background: var(--navy-surface); color: var(--text-secondary); }

.item-card-meta {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.item-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

/* ---------- LIST ITEMS (trajets) ---------- */
.list-container { min-height: 60px; }

.trajet-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--sp-sm) var(--sp-md);
    align-items: start;
    padding: var(--sp-md);
    border-bottom: 1px solid var(--navy-border);
    cursor: pointer;
    transition: background var(--duration) var(--ease);
}
.trajet-item:last-child { border-bottom: none; }
.trajet-item:hover { background: var(--orange-glow); }

.trajet-date {
    text-align: center;
    min-width: 44px;
}
.trajet-date .day {
    display: block;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.trajet-date .month {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trajet-info .trajet-destination {
    font-weight: 500;
    color: var(--white);
    font-size: var(--text-sm);
}
.trajet-info .trajet-detail {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-top: 2px;
}

.trajet-km {
    text-align: right;
    white-space: nowrap;
}
.trajet-km .km-value {
    font-weight: 600;
    color: var(--white);
    font-size: var(--text-sm);
}
.trajet-km .km-motif {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.motif-pro { color: var(--orange); }
.motif-perso { color: var(--text-muted); }

/* ---------- FILTERS ---------- */
.filters-bar {
    display: flex;
    gap: var(--sp-sm);
    flex-wrap: wrap;
    margin-bottom: var(--sp-md);
}
.filter-select {
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    color: var(--text);
    font-size: var(--text-xs);
    cursor: pointer;
    outline: none;
    appearance: none;
    min-width: 0;
    flex: 1;
    min-width: 120px;
}
.filter-select:focus { border-color: var(--orange); }

/* ---------- EMPTY STATE ---------- */
.empty-state {
    text-align: center;
    padding: var(--sp-2xl) var(--sp-md);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* ---------- TOAST ---------- */
.toast-container {
    position: fixed;
    top: calc(var(--header-h) + var(--sp-sm));
    right: var(--sp-md);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    pointer-events: none;
}
.toast {
    pointer-events: auto;
    background: var(--navy-surface);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: var(--text-sm);
    color: var(--text);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    animation: toastIn 0.3s var(--ease);
    max-width: 340px;
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
}
.toast.toast-success { border-left: 3px solid var(--success); }
.toast.toast-error { border-left: 3px solid var(--danger); }
.toast.toast-warning { border-left: 3px solid var(--warning); }
.toast.out { animation: toastOut 0.25s var(--ease) forwards; }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
    to { opacity: 0; transform: translateX(20px); }
}

/* ---------- MODAL ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-md);
    animation: fadeIn 0.2s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
    background: var(--navy-light);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    max-height: 80dvh;
    overflow-y: auto;
    animation: modalIn 0.25s var(--ease);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-md) var(--sp-lg);
    border-bottom: 1px solid var(--navy-border);
}
.modal-header h4 { font-weight: 600; color: var(--white); }
.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
}
.modal-close:hover { color: var(--text); background: var(--navy-surface); }
.modal-body { padding: var(--sp-lg); }
.modal-footer {
    padding: var(--sp-md) var(--sp-lg);
    border-top: 1px solid var(--navy-border);
    display: flex;
    gap: var(--sp-sm);
    justify-content: flex-end;
}

/* ---------- ALERT ITEMS ---------- */
.alert-item {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: var(--sp-sm) 0;
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--navy-border);
}
.alert-item:last-child { border-bottom: none; }
.alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.alert-dot.warning { background: var(--warning); }
.alert-dot.danger { background: var(--danger); }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--navy-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ---------- PRINT ---------- */
@media print {
    #app-header, #sidebar, #bottom-nav, .fab, .toast-container { display: none !important; }
    #app-main { margin: 0 !important; padding: 0 !important; }
    body { background: white; color: black; }
}
