/* ====================================================================
   PARQUEOPRO - ESTILOS PRINCIPALES Y OPTIMIZACIÓN MÓVIL
   ==================================================================== */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

* {
    font-family: 'Montserrat', sans-serif;
}

/* Placa Vehicular Boliviana Oficial (Diseño auténtico de una sola fila) */
.bolivia-plate {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 2px solid #1e40af;
    border-radius: 8px;
    padding: 2px 8px 3px 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    position: relative;
    white-space: nowrap !important;
    user-select: none;
    line-height: 1.1;
    min-width: 105px;
    flex-shrink: 0;
}

.bolivia-plate .plate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4px;
    margin-bottom: 2px;
}

.bolivia-plate .plate-flag {
    width: 13px;
    height: 8px;
    display: inline-flex;
    flex-direction: column;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    overflow: hidden;
    flex-shrink: 0;
}

.bolivia-plate .plate-flag-r { height: 33.33%; background: #d90429; }
.bolivia-plate .plate-flag-y { height: 33.33%; background: #ffd000; }
.bolivia-plate .plate-flag-g { height: 33.34%; background: #007f5f; }

.bolivia-plate .plate-country {
    font-size: 7.5px;
    font-weight: 900;
    color: #1e40af;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Montserrat', sans-serif !important;
}

.bolivia-plate .plate-number {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    font-size: 1.12rem;
    color: #1e3a8a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap !important;
    line-height: 1.1;
}

/* Versión compacta para tablas */
.bolivia-plate-sm {
    min-width: 82px;
    padding: 1px 5px 2px 5px;
    border-width: 1.5px;
}
.bolivia-plate-sm .plate-number {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}
.bolivia-plate-sm .plate-country {
    font-size: 6.5px;
}
.bolivia-plate-sm .plate-flag {
    width: 10px;
    height: 6px;
}

/* Versión grande para formulario y modales */
.bolivia-plate-lg {
    min-width: 160px;
    padding: 4px 14px 6px 14px;
    border-width: 2.5px;
    border-radius: 10px;
}
.bolivia-plate-lg .plate-number {
    font-size: 1.6rem;
    letter-spacing: 0.14em;
}
.bolivia-plate-lg .plate-country {
    font-size: 9.5px;
    letter-spacing: 0.2em;
}
.bolivia-plate-lg .plate-flag {
    width: 16px;
    height: 10px;
}

/* Tipografía de matrículas / placas estilo vehicular con Montserrat Bold */
.font-plate {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap !important;
}

/* Botones y áreas táctiles grandes */
.touch-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.touch-input {
    min-height: 52px;
    font-size: 1.15rem;
}

/* Scrollbar estilizado para tema blanco */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.8);
}
::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.6);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 116, 139, 0.8);
}

/* Espaciado para barra de navegación móvil */
@media (max-width: 768px) {
    body {
        padding-bottom: 74px; /* Espacio para barra inferior móvil */
    }
    .mobile-bottom-nav {
        display: flex !important;
    }
    .touch-btn {
        min-height: 56px;
        font-size: 1.05rem;
    }
}

/* ====================================================================
   ESTILOS DE IMPRESIÓN TÉRMICA (TICKET 58mm / 80mm - MONTSERRAT)
   ==================================================================== */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
        margin: 0 !important;
        padding: 0 !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 12px !important;
    }

    .no-print, .sidebar, header, nav, footer, button, .btn, .mobile-bottom-nav {
        display: none !important;
    }

    .ticket-container {
        width: 78mm !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 4mm !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        font-family: 'Montserrat', sans-serif !important;
    }

    .ticket-header, .ticket-footer {
        text-align: center !important;
    }

    .ticket-divider {
        border-top: 1px dashed #000 !important;
        margin: 6px 0 !important;
    }

    .ticket-plate-box {
        border: 2px solid #000 !important;
        padding: 4px !important;
        text-align: center !important;
        font-size: 20px !important;
        font-weight: 900 !important;
        letter-spacing: 2px !important;
        font-family: 'Montserrat', sans-serif !important;
    }
}

