﻿#gdpr-popup {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #444;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 0px;
    z-index: 1000;
}

#gdpr-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.accept-decision, .decline-decision {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    color: white;
}

.accept-decision {
    background-color: #4CAF50;
}

.decline-decision {
    background-color: #f44336;
}
