/* Simple Consent Banner */
#scb-consent-banner-visible {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222222;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
    z-index: 99999;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

#scb-consent-banner {
    display: none;
}

#scb-consent-text {
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 200px;
}

#scb-accept-btn {
    background-color: #ffffff;
    color: #222222;
    border: none;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

#scb-accept-btn:hover,
#scb-accept-btn:focus {
    background-color: #e0e0e0;
    outline: 2px solid #ffffff;
}
