/* Estilos para el Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    border-top: 3px solid #4BB4AA;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px 0;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-content p {
    color: #555;
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-link {
    color: #4BB4AA;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
    color: #3d9690;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

#acceptCookies,
#rejectCookies {
    font-weight: 600;
    white-space: nowrap;
}

#acceptCookies {
    background-color: #4BB4AA;
    border-color: #4BB4AA;
    color: white;
}

#acceptCookies:hover {
    background-color: #3d9690;
    border-color: #3d9690;
}

#rejectCookies {
    border-color: #ddd;
    color: #555;
}

#rejectCookies:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 0;
    }
    
    .cookie-content h5 {
        font-size: 1.1rem;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        margin-top: 15px;
    }
    
    .cookie-banner.show {
        margin-bottom: 0 !important;
    }
}
