/* Modern Design System - Sistem Pembayaran Uang Sekolah Nusaputera (SPP Admin) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Color Palette */
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;
    --primary-glow: rgba(79, 70, 229, 0.25);

    --secondary: #0ea5e9;
    --secondary-light: #f0f9ff;

    --success: #10b981;
    --success-light: #ecfdf5;
    
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    
    --danger: #ef4444;
    --danger-light: #fef2f2;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --bg-body: #f4f6f9;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    --sidebar-width: 260px;
    --header-height: 70px;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-glow: 0 8px 25px rgba(79, 70, 229, 0.15);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================================================
   LOGIN SCREEN
   ========================================================================== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.login-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.school-badge-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: white;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-glow);
    margin-bottom: 16px;
}

.login-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.5px;
}

.login-header p {
    color: var(--slate-500);
    font-size: 14px;
    margin-top: 6px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    font-size: 18px;
}

.input-with-icon input,
.form-control {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    background-color: var(--slate-50);
    color: var(--slate-800);
    transition: var(--transition);
}

.form-control.no-icon {
    padding-left: 16px;
}

.input-with-icon input:focus,
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
}

.btn-secondary {
    background-color: var(--slate-100);
    color: var(--slate-700);
}

.btn-secondary:hover {
    background-color: var(--slate-200);
}

.btn-success {
    background-color: var(--success);
    color: white;
}

.btn-success:hover {
    background-color: #059669;
}

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

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-sm {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

.btn-outline-primary {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary-light);
}

/* Alert Notification */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background-color: var(--danger-light);
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.alert-success {
    background-color: var(--success-light);
    color: #047857;
    border: 1px solid #a7f3d0;
}

/* ==========================================================================
   MAIN DASHBOARD LAYOUT
   ========================================================================== */
#app-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: #0f172a;
    color: var(--slate-300);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition);
}

.sidebar-header {
    height: var(--header-height);
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--slate-800);
}

.sidebar-brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sidebar-brand-text {
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.sidebar-brand-sub {
    font-size: 10px;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    padding: 20px 14px;
    flex: 1;
    overflow-y: auto;
}

.nav-section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--slate-500);
    font-weight: 700;
    margin: 16px 12px 8px 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--slate-400);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    margin-bottom: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-item:hover {
    color: white;
    background-color: var(--slate-800);
}

.nav-item.active {
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.nav-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--slate-800);
}

.admin-profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: var(--slate-800);
    border-radius: var(--radius-md);
}

.admin-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.admin-info {
    flex: 1;
    overflow: hidden;
}

.admin-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-role {
    font-size: 11px;
    color: var(--slate-400);
}

/* Main Content Area */
.main-wrapper {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.top-navbar {
    height: var(--header-height);
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: var(--shadow-sm);
}

.page-title h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
}

.page-title p {
    font-size: 12px;
    color: var(--slate-500);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.date-pill {
    background-color: var(--slate-100);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-body {
    padding: 32px;
    flex: 1;
}

/* Tab Views */
.view-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.view-section.active {
    display: block;
}

/* ==========================================================================
   DASHBOARD STATS CARDS & METRICS
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.stat-card.primary::before { background-color: var(--primary); }
.stat-card.warning::before { background-color: var(--warning); }
.stat-card.success::before { background-color: var(--success); }
.stat-card.secondary::before { background-color: var(--secondary); }

.stat-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--slate-900);
    margin: 8px 0 4px 0;
    letter-spacing: -0.5px;
}

.stat-desc {
    font-size: 12px;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-card.primary .stat-icon { background-color: var(--primary-light); color: var(--primary); }
.stat-card.warning .stat-icon { background-color: var(--warning-light); color: var(--warning); }
.stat-card.success .stat-icon { background-color: var(--success-light); color: var(--success); }
.stat-card.secondary .stat-icon { background-color: var(--secondary-light); color: var(--secondary); }

/* Analytics Charts & Graphs */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 24px;
}

/* Custom Visual Chart */
.chart-container {
    height: 240px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding-top: 20px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bars-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    justify-content: center;
    background: repeating-linear-gradient(0deg, var(--slate-100) 0px, var(--slate-100) 1px, transparent 1px, transparent 40px);
    border-bottom: 2px solid var(--slate-200);
}

.chart-bar {
    width: 24px;
    border-radius: 6px 6px 0 0;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.chart-bar.invoiced { background: linear-gradient(180deg, var(--slate-400) 0%, var(--slate-300) 100%); }
.chart-bar.paid { background: linear-gradient(180deg, var(--success) 0%, #059669 100%); }

.chart-bar:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--slate-900);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.chart-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-600);
}

.chart-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-600);
    font-weight: 500;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* Pie / Doughnut Progress Card */
.payment-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.progress-circle-svg {
    transform: rotate(-90deg);
    width: 160px;
    height: 160px;
}

.progress-circle-bg {
    fill: none;
    stroke: var(--slate-100);
    stroke-width: 14;
}

.progress-circle-val {
    fill: none;
    stroke: var(--primary);
    stroke-width: 14;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.progress-text {
    text-align: center;
    margin-top: -105px;
    margin-bottom: 45px;
}

.progress-percent {
    font-size: 30px;
    font-weight: 800;
    color: var(--slate-900);
}

.progress-sub {
    font-size: 12px;
    color: var(--slate-500);
    font-weight: 600;
}

/* ==========================================================================
   TABLES, VIRTUAL ACCOUNT BADGES & PILLS
   ========================================================================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.custom-table th {
    background-color: var(--slate-50);
    color: var(--slate-600);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--slate-200);
}

.custom-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--slate-100);
    color: var(--slate-700);
    vertical-align: middle;
}

.custom-table tbody tr {
    transition: var(--transition);
}

.custom-table tbody tr:hover {
    background-color: var(--slate-50);
}

/* Virtual Account Pill Component */
.va-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.va-badge i {
    font-size: 14px;
    color: var(--primary);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.badge-lunas {
    background-color: var(--success-light);
    color: #047857;
}

.badge-belum {
    background-color: var(--danger-light);
    color: #b91c1c;
}

.badge-cicilan {
    background-color: var(--warning-light);
    color: #b45309;
}

.badge-tunai {
    background-color: #e0f2fe;
    color: #0369a1;
}

.badge-transfer {
    background-color: #f3e8ff;
    color: #7e22ce;
}

/* Table Toolbars */
.toolbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    min-width: 260px;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
}

.search-box input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 13px;
    background-color: white;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.toolbar-filters {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dropzone & Import Preview */
.upload-dropzone {
    border: 2px dashed var(--slate-300);
    background-color: var(--slate-50);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.upload-dropzone:hover, .upload-dropzone.dragover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.dropzone-icon {
    width: 56px;
    height: 56px;
    background-color: white;
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}

.template-download-card {
    background-color: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background-color: white;
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--slate-400);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
}

.modal-close:hover {
    color: var(--slate-700);
    background-color: var(--slate-100);
}

.modal-body {
    padding: 24px;
    max-height: 75vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--slate-200);
    background-color: var(--slate-50);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* ==========================================================================
   KWITANSI / PRINT RECEIPT STYLES
   ========================================================================== */
#printable-receipt-wrapper {
    display: none;
}

.receipt-card {
    background-color: white;
    border: 2px solid var(--slate-300);
    border-radius: var(--radius-md);
    padding: 30px;
    max-width: 650px;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif, var(--font-primary);
}

.receipt-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid var(--slate-900);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.receipt-logo {
    width: 60px;
    height: 60px;
    background-color: var(--slate-900);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.receipt-school-info h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--slate-900);
    text-transform: uppercase;
}

.receipt-school-info p {
    font-size: 12px;
    color: var(--slate-600);
}

.receipt-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    text-decoration: underline;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--slate-900);
}

.receipt-table-info {
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
}

.receipt-table-info td {
    padding: 6px 8px;
    vertical-align: top;
}

.receipt-table-info td.lbl {
    font-weight: 700;
    width: 160px;
    color: var(--slate-800);
}

.receipt-amount-box {
    background-color: var(--slate-100);
    border: 1px dashed var(--slate-400);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 800;
    color: var(--slate-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.receipt-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 20px;
}

.receipt-sign {
    text-align: center;
    width: 200px;
}

.receipt-sign-line {
    margin-top: 60px;
    border-top: 1px solid var(--slate-800);
    font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* PRINT MEDIA QUERY */
@media print {
    body {
        background-color: white !important;
        color: black !important;
    }
    
    #app-layout, .login-wrapper {
        display: none !important;
    }

    #printable-receipt-wrapper {
        display: block !important;
        padding: 0;
        margin: 0;
    }
    
    .receipt-card {
        border: none !important;
        box-shadow: none !important;
        max-width: 100% !important;
        padding: 10px !important;
    }

    .no-print {
        display: none !important;
    }
}
