/* ==========================================================================
   STYLE SPREADSHEET - SISTEM TIKET MANDIRI (TRANSPORT FOR JAKARTA)
   ========================================================================== */

/* Pengaturan Umum & Tipografi */
body {
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mengatasi kelap-kelip (Flickering) sintaks {{ }} sebelum Vue ter-render */
[v-cloak] {
    display: none !important;
}

/* Penataan Variabel Warna Utama */
:root {
    --tfjBlue: #004F9F;
    --tfjBlueDark: #0B2F64;
    --tfjTeal: #00A896;
    --tfjYellow: #FFC72C;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* ==========================================================================
   TICKET VISUAL DECORATIONS (UNTUK KARCIS DIGITAL RESMI)
   ========================================================================== */
.ticket-dashed-line {
    border-top: 3px dashed #CBD5E1;
    position: relative;
}
.ticket-dashed-line::before,
.ticket-dashed-line::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 16px;
    height: 16px;
    background-color: #F3F7FA;
    border-radius: 50%;
}
.ticket-dashed-line::before { left: -8px; }
.ticket-dashed-line::after { right: -8px; }

/* Karcis Khusus saat Mode Cetak Kertas */
.print-ticket-box {
    border: 2px solid #000000;
    padding: 24px;
    background: #FFFFFF;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   PRINT ENGINE CSS RULES (SINKRONISASI WINDOW.PRINT)
   ========================================================================== */
.print-only {
    display: none;
}

@media print {
    /* Sembunyikan semua tata letak aplikasi */
    .no-print, header, main, .fixed, button {
        display: none !important;
    }
    
    /* Munculkan kontainer area cetak secara absolut */
    .print-only, #print-area-wrapper {
        display: block !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
    }

    body {
        background: #FFFFFF !important;
        color: #000000 !important;
    }

    .ticket-dashed-line::before,
    .ticket-dashed-line::after {
        background-color: #FFFFFF !important;
        border: 1px solid #000000 !important;
    }

    @page {
        size: A4 portrait;
        margin: 1.5cm;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}