/* ==========================================
   STYLE MINIMALIS DENGAN MODAL POP-UP (RESPONSIVE HP)
   ========================================== */

body {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.hero-text-section {
    color: white;
    text-align: center;
    padding: 100px 0 40px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.menu-btn {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.2) !important;
}

.menu-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffc107 !important;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
}

/* ==========================================
   TRIK KHUSUS: MENGUBAH TABEL MENJADI KARTU DI HP 
   ========================================== */
@media (max-width: 767px) {
    /* Sembunyikan Header Tabel Asli di HP */
    .responsive-table-hp thead {
        display: none;
    }
    
    /* Ubah setiap baris TR menjadi model kartu kotak */
    .responsive-table-hp tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        background: #f8f9fa;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    /* Atur setiap kolom TD agar turun ke bawah (menumpuk) */
    .responsive-table-hp td {
        display: block;
        text-align: left !important;
        border: none !important;
        padding: 5px 10px !important;
    }
    
    /* Tambahkan teks label penunjuk di depan data otomatis menggunakan atribut data-label */
    .responsive-table-hp td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        color: #495057;
        width: 40%;
    }
}