/* ============================= */
/* Cookie Banner - Dark & Responsive */
/* ============================= */

/* Banner Wrapper */
.rscbp-banner {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 9999;
    padding: 20px;
    background-color: #202020 !important;  /* dark background */
    color: #FFF !important;
    text-align: center;
    font-family: Arial, sans-serif;
}

.rscbp-top {
    top: 0;
}

.rscbp-bottom {
    bottom: 0;
}

/* Banner Message */
.rscbp-banner .rscbp-banner-message {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Policy Link */
.rscbp-policy-link {
    margin-top: 10px;
    font-size: 14px;
}
.rscbp-policy-link a {
    color: #FFF !important;
    text-decoration: underline !important;
}

/* Button Styles: Fully Rounded, Dark Background, White Text */
.rscbp-banner .rscbp-btn {
    display: inline-block;
    margin: 8px;
    padding: 12px 24px;
    border: none !important;
    cursor: pointer;
    font-size: 15px;
    border-radius: 50px !important;  /* fully rounded buttons */
    background-color: #000 !important; /* dark color */
    color: #FFF !important;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.rscbp-banner .rscbp-btn:hover {
    background-color: #333 !important;
}

/* Options Panel (Popup) - Fixed & Centered */
.rscbp-options-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background-color: #151515 !important;  /* even darker background */
    color: #FFF !important;
    padding: 20px;
    border: 2px solid #333 !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.7);
    z-index: 10001;
    display: none;
}
.rscbp-options-panel label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #FFF !important;
}
.rscbp-options-panel input[type="checkbox"] {
    margin-right: 8px;
}

/* Floating Revoke Button */
.rscbp-revoke-button {
    position: fixed;
    left: 10px;
    bottom: 10px;
    background: #000 !important;
    color: #FFF !important;
    padding: 12px;
    border: none;
    border-radius: 50% !important;
    cursor: pointer;
    z-index: 10000;
    display: none;
    transition: background 0.3s ease;
}
.rscbp-revoke-button:hover {
    background: #333 !important;
}

/* ===================================== */
/* Responsive Adjustments for Mobile Devices */
/* ===================================== */
@media screen and (max-width: 600px) {
    .rscbp-banner {
        padding: 15px;
    }
    .rscbp-banner .rscbp-banner-message {
        font-size: 14px;
    }
    .rscbp-banner .rscbp-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .rscbp-options-panel {
        width: 90%;
        padding: 15px;
    }
    .rscbp-policy-link {
        font-size: 12px;
    }
}
