.dpdpa-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    max-width: 600px;
    display: none;
    flex-direction: column;
    gap: 16px;
}

.dpdpa-banner.active {
    display: flex;
}

.dpdpa-banner h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.dpdpa-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

.dpdpa-banner-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
}

.dpdpa-banner-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.dpdpa-banner-btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.dpdpa-banner-btn-secondary:hover {
    background: #e2e8f0;
}

.dpdpa-banner-btn-primary {
    background: #0f766e;
    color: #ffffff;
}

.dpdpa-banner-btn-primary:hover {
    background: #14b8a6;
}

/* Preferences Modal */
.dpdpa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dpdpa-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dpdpa-modal h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #0f172a;
}

.dpdpa-modal p {
    margin: 0 0 24px 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.dpdpa-purpose-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.dpdpa-purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.dpdpa-purpose-item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.dpdpa-purpose-info {
    flex: 1;
}

.dpdpa-purpose-info label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 4px;
}

.dpdpa-purpose-info span {
    display: block;
    font-size: 13px;
    color: #64748b;
}

/* Custom Checkbox as Switch */
.dpdpa-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin-top: 4px;
}

.dpdpa-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dpdpa-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 24px;
}

.dpdpa-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.dpdpa-slider {
    background-color: #0f766e;
}

input:checked+.dpdpa-slider:before {
    transform: translateX(20px);
}

input:disabled+.dpdpa-slider {
    background-color: #f1f5f9;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .dpdpa-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}