/* GDPR Popup Styles */
#gdpr-popup-block {
    display: none; /* Initially set to block for testing, will be toggled with JavaScript */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    padding: 20px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#gdpr-popup-block-content {
    text-align: center;
}

#gdpr-buttons {
    margin-top: 15px;
}

#gdpr-popup-block button {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
}

/* Style for overlay if needed */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}
