#apb-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: #374151;
    transform: translateY(100%);
    transition: transform .3s ease;
}

#apb-consent-banner.apb-consent-visible {
    transform: translateY(0);
}

#apb-consent-banner.apb-consent-hiding {
    transform: translateY(100%);
}

.apb-consent-text {
    flex: 1;
    margin: 0;
    min-width: 200px;
    line-height: 1.5;
}

.apb-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.apb-consent-btn {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    line-height: 1;
    transition: opacity .15s;
}

.apb-consent-btn:hover {
    opacity: .85;
}

.apb-consent-btn-accept {
    background: #2563eb;
    color: #fff;
}

.apb-consent-btn-decline {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

@media (max-width: 480px) {
    #apb-consent-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .apb-consent-actions {
        width: 100%;
    }
    .apb-consent-btn {
        flex: 1;
        text-align: center;
    }
}
