/* background.css */
body {
    /* Menggabungkan Overlay Gelap dan Gambar Background */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('13900605_5315093.jpg'); /* Ganti dengan link gambar lokal Anda */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Modifikasi kotak dashboard agar terlihat lebih modern (Glassmorphism) */
.dashboard-box {
    background-color: rgba(255, 255, 255, 0.95) !important; /* Putih pekat agar teks jelas */
    backdrop-filter: blur(5px); /* Sedikit efek blur di belakang kotak */
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}