/* Self-hosted cookie consent banner styles */
#cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #1c1c1c;
    color: #f5f5f5;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    line-height: 1.5;
}

#cookie-consent-banner .cc-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

#cookie-consent-banner .cc-text {
    flex: 1 1 420px;
    margin: 0;
}

#cookie-consent-banner .cc-text a {
    color: #ffb703;
    text-decoration: underline;
}

#cookie-consent-banner .cc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#cookie-consent-banner .cc-btn {
    border: 1px solid #f5f5f5;
    background: transparent;
    color: #f5f5f5;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

/* Reject and Accept must carry equal visual weight — no dark pattern. */
#cookie-consent-banner .cc-btn-primary,
#cookie-consent-banner .cc-btn-secondary {
    border: 1px solid #f5f5f5;
    background: transparent;
}

#cookie-consent-banner .cc-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

#cookie-consent-banner .cc-panel {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 14px;
    margin-top: 4px;
}

#cookie-consent-banner .cc-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

#cookie-consent-banner .cc-panel-actions {
    margin-top: 4px;
}

@media (max-width: 640px) {
    #cookie-consent-banner .cc-actions {
        width: 100%;
    }
    #cookie-consent-banner .cc-btn {
        flex: 1 1 auto;
    }
}
