#gdpr-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

#gdpr-content {
    max-width: 800px;
    margin: 0 auto;
}

#gdpr-content p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.5;
}

#gdpr-content a {
    color: #4CAF50;
    text-decoration: underline;
}

#gdpr-accept {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

#gdpr-accept:hover {
    background-color: #45a049;
}