/* Disabling all interactions on the page before cookie acceptance */
/* body.disable-interaction {
    pointer-events: none;
    overflow: hidden;
} */

body.disable-interaction #cookieConsentOverlay,
body.disable-interaction #cookieConsentOverlay * {
    pointer-events: auto; /* Ensure the cookie consent overlay is still clickable */
}

/* CSS untuk popup cookies */
#cookieConsentOverlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(72, 12, 52, 1);
    color: #fff;
    padding: 15px;
    font-size: 10pt;
    display: none; /* Akan diatur oleh JavaScript */
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease;
}

#cookieConsentOverlay.show {
    display: block;
    opacity: 1;
}

.cookie-popup {
    max-width: 100%;
    margin: 0 auto;
}

.button {
    background-color: #e2c386;
    color: #fff;
    border: 0;
    font-size: 10pt;
    border-radius: 5px;
}

.link-popup {
    text-decoration: none;
    color: #e2c386;
}

.link-popup:hover {
    color: #fff;
}

.title-popup {
    color: #e2c386;
}
