.bg-gray-900 { background-color: #000 !important; }
html { background-color: #000 !important; }

/* Define the blink animation */
@keyframes blink-animation {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Apply the blink animation to elements with the .blink class */
.blink {
    animation: blink-animation 1s linear infinite;
}

/* Light mode */
@media (prefers-color-scheme: light) {
    .dnbradio-theme .dark\:bg-black {
        background-color: white;
        color: black;
    }
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
    .dnbradio-theme .dark\:bg-black {
        background-color: black;
        color: white;
    }
}