/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #080808;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(255, 140, 0, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(255, 140, 0, 0.08) 0%, transparent 30%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Card Utama */
.container {
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    position: relative;
}

/* Judul Glow */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #ff8c00;
    letter-spacing: 6px;
    text-shadow: 0 0 25px rgba(255, 140, 0, 0.5);
    margin-bottom: 15px;
}

p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Row Layanan */
.services {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.tag:hover {
    border-color: #ff8c00;
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

/* Box Informasi Dinamis */
.info-box {
    min-height: 50px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #666;
    transition: 0.3s ease;
    padding: 0 10px;
}

/* Tombol Neon */
.btn-login {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.btn-login:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.5);
    filter: brightness(1.2);
}

.footer-text {
    margin-top: 40px;
    font-size: 10px;
    color: #333;
    letter-spacing: 1px;
}
/* Area Tabel Laporan dengan Fitur Scroll */
.table-scroll-laporan {
    max-height: 400px; /* Atur tinggi maksimal sesuai keinginan */
    overflow-y: auto;
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
    margin-top: 20px;
}

/* Memastikan header tabel tetap kelihatan saat di-scroll (Sticky) */
.table-scroll-laporan th {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Custom Scrollbar agar senada dengan Dashboard */
.table-scroll-laporan::-webkit-scrollbar { width: 6px; }
.table-scroll-laporan::-webkit-scrollbar-thumb { background: #ff8c00; border-radius: 10px; }

/* CSS agar saat diprint tidak terpotong (Scroll dimatikan saat print) */
@media print {
    .table-scroll-laporan {
        max-height: none !important;
        overflow: visible !important;
    }
}