/* Import Font Mewah */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #0a0a0a;
    color: #d4af37;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #d4af37;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    text-align: center;
    border-radius: 5px;
}

h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

input, select {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background: #0a0a0a;
    border: 1px solid #d4af37;
    color: #fff;
    font-size: 16px;
}

/* Tombol-tombol Utama */
button, .btn-gold, .btn-add {
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    transition: 0.3s;
}

button:hover, .btn-gold:hover, .btn-add:hover {
    background: #b8860b;
    color: #fff;
}

/* Tabel */
table {
    width: 100%;
    color: #fff;
    border-collapse: collapse;
    margin: 20px 0;
}

th {
    border-bottom: 2px solid #d4af37;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #333;
}

/* Tombol Aksi Tabel */
.btn-edit, .btn-del {
    display: inline-block;
    width: auto;
    padding: 5px 10px;
    font-size: 12px;
    margin: 2px;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
}

.btn-edit { background: #3498db; }
.btn-del { background: #e74c3c; }

/* Notifikasi */
.alert {
    padding: 15px;
    background: #27ae60; /* Hijau mewah */
    color: #fff;
    border: 1px solid #d4af37;
    margin-bottom: 20px;
    font-weight: bold;
    border-radius: 5px;
    animation: fadeIn 0.5s ease;
}

/* Empty State & Summary Box */
.empty-state { 
    padding: 40px; 
    text-align: center; 
    color: #888; 
    border: 1px dashed #d4af37; 
    border-radius: 5px; 
    margin: 20px 0; 
}

.summary-box { 
    background: #1a1a1a; 
    padding: 20px; 
    border: 1px solid #d4af37; 
    margin: 20px 0; 
    text-align: left;
    color: #d4af37;
}

.summary-box strong { color: #d4af37; }

/* Animasi & Responsif */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .container { padding: 20px; }
    th, td { font-size: 11px; padding: 8px; }
}