body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Estilos para el modal */
.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 1000;
}

.cookie-modal-content {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
}

.cookie-modal-content h2 {
    margin: 0 0 10px;
}

.cookie-modal-content p, .cookie-modal-content ul {
    margin: 10px 0;
}

.cookie-categories {
    margin-bottom: 10px;
}

.cookie-buttons {
    margin-top: 20px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

#reject-btn {
    background-color: #f44336;
}

#reject-btn:hover {
    background-color: #e53935;
}

#save-btn {
    background-color: #ffa500;
}

#save-btn:hover {
    background-color: #ff8c00;
}

#accept-btn {
    background-color: #4CAF50;
}

#accept-btn:hover {
    background-color: #45a049;
}
