/* === FLOATING COOKIE CARD UI === */
.cookie-banner {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    left: auto !important;

    width: 420px !important;
    max-width: 95vw !important;

    background: #ffffff !important;
    color: #000 !important;

    border-radius: 10px;
    padding: 22px !important;

    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    z-index: 9999;

    animation: slideUp 0.4s ease;
}

/* REMOVE GRID BEHAVIOR */
.cookie-banner .container,
.cookie-banner .row {
    all: unset;
}

/* TEXT */
.cookie-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    display: block;
}

/* LINK */
.cookie-link {
    color: #0d6efd;
    text-decoration: underline;
}

/* BUTTONS */
.cookie-actions {
    display: flex;
    align-items: center;
}

/* ACCEPT BUTTON (PRIMARY GREEN LIKE SCREENSHOT) */
#acceptCookies {
    background: #198754 !important;
    color: #fff !important;
    border: none;
    padding: 6px 14px;
}





/* ANIMATION */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 576px) {

    .cookie-banner {
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        bottom: 10px !important;
        padding: 16px !important;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .cookie-actions button {
        width: 100%;
        margin: 0 !important;
    }
}


/* FIX MODAL DISPLAY */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0,0,0,0.6);
    z-index: 10000;

    display: none; /* IMPORTANT */
    align-items: center;
    justify-content: center;
}

/* WHEN ACTIVE */
.cookie-modal.show {
    display: flex;
}

/* MODAL BOX */
.cookie-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 420px;
    max-width: 95%;
}

/* REJECT BUTTON */
#rejectCookies {
    background: #e9ecef !important;
	color: #333 !important;
    border: none;
    margin-right: 8px;
}
/* SETTINGS BUTTON */


#manageCookies {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
    font-weight: 500;
}