/* static/css/cookie-banner.css */
/* Estilo general del banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #353849; /* Fondo oscuro para que coincida con el diseño general */
    color: #ffffff; /* Texto blanco */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    display: none; /* Oculto por defecto */
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contenedor del contenido */
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Centrar el texto */
}

/* Detalles del banner */
.cookie-details {
    margin: 20px 0;
}

/* Grupos de cookies */
.cookie-group {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #4c5c96; /* Fondo azul oscuro */
    border-radius: 4px;
    color: #ffffff;
}

/* Botones de acción */
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* Centrar los botones */
}

.cookie-actions .btn {
    background-color: #4c5c96; /* Fondo azul oscuro */
    color: #ffffff; /* Texto blanco */
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cookie-actions .btn:hover {
    background-color: #53639e; /* Fondo más claro al pasar el cursor */
}

.cookie-actions .btn-link {
    background: none;
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Responsividad */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%; /* Botones ocupan todo el ancho */
        text-align: center;
    }
}