/* GDPR Banner - Bottom Floating */
#gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
}

.gdpr-content h3 { margin: 0 0 10px; font-size: 16px; color: #333; }
.gdpr-content p { margin: 0; font-size: 13px; color: #666; max-width: 800px; }

.gdpr-actions { display: flex; gap: 10px; }

.btn-solid {
    background: #68b634; /* OneTrust Green */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.btn-ghost {
    background: transparent;
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Modal - Preference Center */
#gdpr-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gdpr-modal-content {
    background: #fff;
    width: 600px;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.gdpr-header {
    padding: 20px;
    background: #f4f4f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.gdpr-header h2 { margin: 0; font-size: 18px; color: #333; }
.close-btn { background: none; border: none; font-size: 24px; cursor: pointer; }

.gdpr-body { padding: 20px; overflow-y: auto; }
.intro-text { font-size: 13px; color: #555; margin-bottom: 20px; }

.gdpr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.gdpr-info h4 { margin: 0 0 5px; font-size: 14px; }
.gdpr-info p { margin: 0; font-size: 12px; color: #777; }

.text-blue { color: #1e429f; font-weight: bold; font-size: 12px; }

/* Toggles */
.switch { position: relative; display: inline-block; width: 40px; height: 20px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 2px; bottom: 2px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: #68b634; }
input:checked + .slider:before { transform: translateX(20px); }

.gdpr-footer { padding: 15px; background: #f4f4f4; text-align: right; border-top: 1px solid #ddd; }

/* Mobile Responsive */
@media (max-width: 768px) {
    #gdpr-banner { flex-direction: column; text-align: center; gap: 15px; }
    .gdpr-actions { width: 100%; justify-content: center; }
}