	/* Estilos para el banner de cookies */
        #cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #333;
            color: white;
            padding: 20px;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        #cookie-consent-banner .cookie-text {
            text-align: center;
            flex: 1;
            font-size: 12px;
            line-height: 1.5;
        }
        
        #cookie-consent-banner .cookie-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }
        
        #cookie-consent-banner button {
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        #accept-cookies {
            background-color: #28a745;
            color: white;
        }
        
        #accept-cookies:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }
        
        #reject-cookies {
            background-color: #dccb35;
            color: white;
        }
        
        #reject-cookies:hover {
            background-color: #c8bd23;
            transform: translateY(-2px);
        }
        
        /* Responsivo */
        /* 768px - 1024px */
        @media (max-width: 1024px) {
            #cookie-consent-banner {
                padding: 18px;
                gap: 12px;
            }
            
            #cookie-consent-banner .cookie-text {
                font-size: 13px;
                line-height: 1.4;
            }
            
            #cookie-consent-banner button {
                padding: 10px 20px;
                font-size: 13px;
            }
            
            #cookie-consent-banner .cookie-buttons {
                gap: 12px;
            }
        }
        
        /* 481px - 767px */
        @media (max-width: 767px) {
            #cookie-consent-banner {
                padding: 15px;
                gap: 10px;
            }
            
            #cookie-consent-banner .cookie-text {
                font-size: 12px;
                line-height: 1.3;
            }
            
            #cookie-consent-banner button {
                padding: 8px 16px;
                font-size: 12px;
            }
            
            #cookie-consent-banner .cookie-buttons {
                gap: 10px;
                flex-direction: column;
                align-items: center;
            }
            
            #cookie-consent-banner .cookie-buttons button {
                width: 80%;
                max-width: 200px;
            }
        }
        
        /* 320px - 480px */
        @media (max-width: 480px) {
            #cookie-consent-banner {
                padding: 12px;
                gap: 8px;
            }
            
            #cookie-consent-banner .cookie-text {
                font-size: 11px;
                line-height: 1.2;
            }
            
            #cookie-consent-banner button {
                padding: 6px 12px;
                font-size: 11px;
            }
            
            #cookie-consent-banner .cookie-buttons {
                gap: 8px;
            }
            
            #cookie-consent-banner .cookie-buttons button {
                width: 85%;
                max-width: 180px;
            }
        }
        
        /* -320px */
        @media (max-width: 320px) {
            #cookie-consent-banner {
                padding: 10px;
                gap: 6px;
            }
            
            #cookie-consent-banner .cookie-text {
                font-size: 10px;
                line-height: 1.1;
            }
            
            #cookie-consent-banner button {
                padding: 5px 10px;
                font-size: 10px;
            }
            
            #cookie-consent-banner .cookie-buttons {
                gap: 6px;
            }
            
            #cookie-consent-banner .cookie-buttons button {
                width: 90%;
                max-width: 150px;
            }
        }
        
        /* 1200px */
        @media (min-width: 1200px) {
            #cookie-consent-banner {
                padding: 25px;
                gap: 20px;
            }
            
            #cookie-consent-banner .cookie-text {
                font-size: 15px;
                line-height: 1.6;
            }
            
            #cookie-consent-banner button {
                padding: 14px 30px;
                font-size: 15px;
            }
            
            #cookie-consent-banner .cookie-buttons {
                gap: 20px;
            }
        }
        
        /* Estilos para el modal de cookies rechazadas */
        .cookie-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }
        
        .cookie-modal-content {
            background-color: white;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: slideIn 0.3s ease;
        }
        
        .cookie-modal-header {
            padding: 20px 25px 15px;
            border-bottom: 1px solid #eee;
            background-color: #f8f9fa;
            border-radius: 10px 10px 0 0;
        }
        
        .cookie-modal-header h3 {
            margin: 0;
            color: #333;
            font-size: 18px;
            font-weight: 600;
        }
        
        .cookie-modal-body {
            padding: 20px 25px;
        }
        
        .cookie-modal-body p {
            margin: 0 0 15px 0;
            color: #555;
            line-height: 1.5;
            font-size: 14px;
        }
        
        .cookie-modal-body p:last-child {
            margin-bottom: 0;
        }
        
        .cookie-modal-footer {
            padding: 15px 25px 20px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            border-top: 1px solid #eee;
            background-color: #f8f9fa;
            border-radius: 0 0 10px 10px;
        }
        
        .modal-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .modal-btn-accept {
            background-color: #28a745;
            color: white;
        }
        
        .modal-btn-accept:hover {
            background-color: #218838;
            transform: translateY(-1px);
        }
        
        .modal-btn-close {
            background-color: #6c757d;
            color: white;
        }
        
        .modal-btn-close:hover {
            background-color: #5a6268;
            transform: translateY(-1px);
        }
        
        /* Animaciones para el modal */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* Responsive design para el modal */
        @media (max-width: 767px) {
            .cookie-modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .cookie-modal-header {
                padding: 15px 20px 10px;
            }
            
            .cookie-modal-header h3 {
                font-size: 16px;
            }
            
            .cookie-modal-body {
                padding: 15px 20px;
            }
            
            .cookie-modal-body p {
                font-size: 13px;
            }
            
            .cookie-modal-footer {
                padding: 10px 20px 15px;
                flex-direction: column;
            }
            
            .modal-btn {
                width: 100%;
                margin-bottom: 5px;
            }
        }
        
        @media (max-width: 480px) {
            .cookie-modal-header h3 {
                font-size: 15px;
            }
            
            .cookie-modal-body p {
                font-size: 12px;
            }
            
            .modal-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
        }
/*=====  End of list column  ======*/


