/* Frontend styles for LegalBlink Cookie Blocker */

/* Styles for blocked scripts - these classes are added by the plugin */
script.lb-third-party-adv-cookies,
script.lb-third-party-stats-cookies {
    display: none !important;
}

/* Cookie banner customizations */
#legalblink-banner {
    z-index: 999999;
}

/* Optional: Add some basic styling for cookie consent elements */
.lb-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 999999;
    text-align: center;
}

.lb-cookie-consent button {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 3px;
}

.lb-cookie-consent button:hover {
    background: #005a87;
}

/* Responsive design for mobile */
@media screen and (max-width: 768px) {
    .lb-cookie-consent {
        padding: 15px 10px;
        font-size: 14px;
    }

    .lb-cookie-consent button {
        display: block;
        width: 100%;
        margin: 5px 0;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}