/* Estilos del Banner de Cookies GDPR */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

#cookie-banner-main,
#cookie-settings-panel {
    padding: 1.5rem;
}

#cookie-settings-panel {
    display: none;
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.cookie-description {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    max-width: 800px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-primary {
    background-color: #2A52BE;
    color: white;
    border: none;
}

.cookie-btn-primary:hover {
    background-color: #1e3a8a;
}

.cookie-btn-secondary {
    background-color: white;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.cookie-btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.cookie-btn-link {
    background: none;
    border: none;
    color: #2A52BE;
    text-decoration: underline;
    padding: 0.5rem 0;
}

.cookie-btn-link:hover {
    color: #1e3a8a;
}

.cookie-settings-group {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-settings-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.cookie-settings-description {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
    accent-color: #2A52BE;
}

/* Responsive */
@media (max-width: 640px) {
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
