/**
 * Desain Sistem Global - SMK Pembangunan Bogor
 * Warna Utama:
 * - Primary: #005BAC (Deep Blue)
 * - Secondary: #0077D9 (Vibrant Blue)
 * - Accent: #FFD54F (Golden Yellow)
 */

:root {
    --primary-color: #005BAC;
    --primary-light: #0077D9;
    --accent-color: #FFD54F;
    --bg-dark: #07192f;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-light: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(255, 255, 255, 0.15);
    
    --text-white: #ffffff;
    --text-muted: #abb2bf;
    --text-dark: #1e293b;
    
    --font-outfit: 'Outfit', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-outfit);
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel-light {
    background: var(--bg-card-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 91, 172, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 91, 172, 0.08);
}

/* Text Accent Utilities */
.text-accent {
    color: var(--accent-color) !important;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.bg-accent-color {
    background-color: var(--accent-color) !important;
}

/* Animations */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.blink {
    animation: blink 1.5s infinite;
}

/* Struk Ticket Styles for Printer / Browser Print Fallback */
.ticket-box {
    width: 280px; /* Lebar default struk 58mm/80mm */
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #000;
    background: #fff;
    padding: 15px;
    text-align: center;
    border: 1px dashed #aaa;
    margin: 0 auto;
}

.ticket-school {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
}

.ticket-header {
    font-size: 11px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.ticket-label {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.ticket-number {
    font-size: 42px;
    font-weight: bold;
    margin: 10px 0;
    letter-spacing: 1px;
}

.ticket-meta {
    width: 100%;
    font-size: 10px;
    margin: 10px 0;
}

.ticket-meta td {
    padding: 2px 0;
}

.ticket-footer {
    font-size: 10px;
    line-height: 1.4;
    margin-top: 12px;
}

/* CSS Print Media Queries - Dioptimalkan untuk Printer Thermal 58mm (seperti EPPOS POS58L) */
@media print {
    @page {
        size: 58mm auto;
        margin: 0;
    }
    
    html, body {
        width: 58mm !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important; /* Reset flexbox dari kiosk body */
        margin: 0 !important;
        padding: 0 !important;
        background-color: #fff !important;
        background: none !important; /* Hilangkan background gradient */
        color: #000 !important;
        font-family: 'Courier New', Courier, monospace;
    }

    body * {
        visibility: hidden;
    }
    
    #ticket-print-area, #ticket-print-area * {
        visibility: visible;
    }
    
    #ticket-print-area {
        position: absolute;
        left: 3.0mm !important; /* Geser ke kanan 3.0mm agar seimbang (sisa space terbagi rata kiri-kanan) */
        top: 0 !important;
        width: 48mm !important; /* Pas dengan lebar cetak fisik roll 58mm */
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .ticket-box {
        width: 48mm !important; /* Mengisi penuh lebar printable area kertas 58mm */
        margin: 0 !important; /* Tempel kiri agar tidak tergeser oleh default margin browser */
        padding: 4mm 0 12mm 0 !important;
        border: none !important;
        text-align: center !important; /* Teks di dalam tetap rata tengah */
        box-sizing: border-box !important;
        background-color: #fff !important;
        color: #000 !important;
        font-weight: bold !important; /* Semua teks tebal */
    }
    
    .ticket-box * {
        font-weight: bold !important;
        color: #000 !important;
    }
    
    .ticket-school {
        font-size: 11pt !important;
        line-height: 1.2;
        margin-bottom: 2px;
    }
    
    .ticket-header {
        font-size: 8.5pt !important;
        line-height: 1.2;
        margin-bottom: 6px;
    }
    
    .ticket-divider {
        border-top: 2px dashed #000 !important; /* Tebalkan garis putus-putus */
        margin: 6px 0;
        height: 0;
    }
    
    .ticket-label {
        font-size: 8.5pt !important;
        margin-bottom: 2px;
    }
    
    .ticket-number {
        font-size: 34pt !important; /* Dibuat sedikit lebih besar */
        margin: 4px 0;
        line-height: 1.1;
    }
    
    .ticket-meta {
        width: 100%;
        font-size: 8.5pt !important;
        margin: 4px 0;
    }
    
    .ticket-meta td {
        padding: 1px 0;
    }
    
    .ticket-footer {
        font-size: 8pt !important;
        line-height: 1.3;
        margin-top: 8px;
    }
}
