#gdpr-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#gdpr-popup.show {
    transform: translateY(0);
}

#gdpr-popup .gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

#gdpr-popup .gdpr-text {
    flex: 1;
    min-width: 300px;
}

#gdpr-popup .gdpr-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#gdpr-popup button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#gdpr-popup .accept-btn {
    background: #28a745;
    color: white;
}

#gdpr-popup .decline-btn {
    background: #dc3545;
    color: white;
}

#gdpr-popup .settings-btn {
    background: #6c757d;
    color: white;
}

#gdpr-popup .customize-btn {
    background: #1976d2;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
}

#gdpr-popup .gdpr-text a {
    color: #fff;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid #666666;
    margin: 15% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px;
    background-color: #333333;
    border-bottom: 1px solid #666666;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #e0e0e0;
}

.close {
    color: #b0b0b0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9);
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.cookie-category input {
    margin-right: 10px;
}

.cookie-category p {
    margin: 0;
    color: #b0b0b0;
    font-size: 14px;
    margin-left: 30px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #666666;
    text-align: right;
    background-color: #333333;
    border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
    #gdpr-popup .gdpr-content {
        flex-direction: column;
        text-align: center;
    }
    
    #gdpr-popup .gdpr-buttons {
        justify-content: center;
    }
}