/* Frontend banner default styles - you can override via settings -> Custom CSS */
#ds-gdpr-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    background: rgba(0,0,0,0.9);
    color: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 240ms ease, opacity 240ms ease;
    display: block;
}

.ds-gdpr-hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.ds-gdpr-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ds-gdpr-text {
    flex: 1 1 60%;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
}

.ds-gdpr-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
}

.ds-gdpr-btn {
    padding: 8px 14px;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}

.ds-gdpr-accept {
    background: #1e88e5;
    color: #fff;
}

.ds-gdpr-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 560px) {
    .ds-gdpr-inner { flex-direction: column; gap: 10px; align-items: stretch; }
    .ds-gdpr-actions { justify-content: flex-end; width: 100%; }
}
