body {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}
/* Contoh merubah warna header dan card */
.card {
    background-color: #1e1e1e !important;
}
a {
    color: #bb86fc !important;
}

.button-transparent {
    background-color: transparent; /* Membuat background transparan */
    border: 2px solid #ffffff;    /* Memberi border warna putih (bisa diganti) */
    color: #ffffff;              /* Warna teks putih */
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;   /* Efek halus saat hover */
    display: inline-block;
    cursor: pointer;
}

.button-transparent:hover {
    background-color: transparent;    /* Warna background saat di-hover */
    color: #000000;              /* Warna teks saat di-hover */
}
