/* Banner de Cookies */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #f8f9fa; 
            color: #333; /* Texto oscuro para contraste */
            padding: 15px;
            display: none;
            z-index: 9999;
            border-top: 3px solid #007bff; 
            font-family: 'Arial', sans-serif; 
        }
    
        #cookie-banner p {
            font-size: 16px;
            margin: 0 0 10px 0;
            text-align: center;
        }
    
        #cookie-banner a {
            color: #007bff;
            text-decoration: underline;
            font-weight: bold;
        }
    
        #cookie-banner .buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
    
        #cookie-banner button {
            font-size: 14px;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }
    
        #cookie-banner .accept {
            background-color: #28a745;
            color: white;
        }
    
        #cookie-banner .customize {
            background-color: #ffc107;
            color: #333;
        }
    
        #cookie-banner .reject {
            background-color: #dc3545;
            color: white;
        }
    
/* Modal de Personalización */
        #customization-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #ffffff;
            color: #333;
            padding: 30px;
            z-index: 1000;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 500px;
        }
    
        #customization-modal h3 {
            text-align: center;
            font-size: 20px;
            color: #007bff;
            margin-bottom: 20px;
        }
    
        #customization-modal label {
            display: block;
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
        }
    
        #customization-modal input[type="checkbox"] {
            margin-right: 10px;
        }
    
        #customization-modal button {
            font-size: 14px;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
        }
    
        #customization-modal .save {
            background-color: #28a745;
            color: white;
        }
    
        #customization-modal .cancel {
            background-color: #dc3545;
            color: white;
        }