/* assets/css/cookie-consent.css */
/* Estilos para el banner de consentimiento de cookies */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-consent-text a {
    color: #ffc107;
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.cookie-consent-btn.accept {
    background-color: #28a745;
    color: white;
}

.cookie-consent-btn.accept:hover {
    background-color: #218838;
}

.cookie-consent-btn.decline {
    background-color: #6c757d;
    color: white;
}

.cookie-consent-btn.decline:hover {
    background-color: #5a6268;
}

.cookie-consent-btn.settings {
    background-color: #ffc107;
    color: #212529;
}

.cookie-consent-btn.settings:hover {
    background-color: #e0a800;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
    }
}