/**
 * Cookie consent banner
 * Extracted from consent.tpl inline styles
 * @author Markus <mw@easy-m.de>
 */

#ez-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-consent, 9999);
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #333;
}

#ez-consent-banner .ez-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#ez-consent-banner .ez-consent-text {
    flex: 1;
    min-width: 280px;
    line-height: 1.6;
}

#ez-consent-banner .ez-consent-text strong {
    font-size: 14px;
}

#ez-consent-banner .ez-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#ez-consent-banner .ez-consent-btn {
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
}

#ez-consent-banner .ez-consent-btn--secondary {
    border: 1px solid #ccc;
    background: #fff;
    color: #555;
}

#ez-consent-banner .ez-consent-btn--primary {
    border: none;
    background: var(--primary-color, #b91d22);
    color: #fff;
    font-weight: 600;
}