/* Bottom Banner */
#mpdpa-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 99999;
    font-family: sans-serif;
    border-top: 3px solid #10b981;
    display: none; /* Hidden by default, JS will show */
}

.mpdpa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.mpdpa-content {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.mpdpa-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Buttons */
.mpdpa-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s;
    text-decoration: none;
    display: inline-block;
}

.mpdpa-btn:hover { opacity: 0.9; }

.mpdpa-accept { background-color: #10b981; color: white; }
.mpdpa-reject { background-color: #ef4444; color: white; }
.mpdpa-customize { background-color: transparent; border: 1px solid #333; color: #333; }

/* Modal / Popup */
#mpdpa-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
}

.mpdpa-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.mpdpa-modal-header h2 { margin-top: 0; }

.mpdpa-option {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mpdpa-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.mpdpa-option p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* Footer Link */
#mpdpa-footer-trigger {
    text-align: center;
    padding: 10px;
    font-size: 12px;
}
#mpdpa-reopen { color: #555; text-decoration: underline; }