/* public/assets/css/styles.css */

/* Animaciones y utilidades de toque */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    user-select: none;
    -webkit-user-select: none;
}

/* Scrollbar moderno */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Canvas de firma */
#signature-pad {
    touch-action: none;
}

/* Leaflet Map overrides */
.leaflet-container {
    background-color: #020617 !important;
}

.custom-bus-marker {
    transition: transform 0.4s ease-out;
}

/* Impresión */
@media print {
    nav, footer, .print-hidden {
        display: none !important;
    }
}
