
footer {
    background-color: #333; /* Fondo oscuro */
    color: #f2f2f2; /* Texto claro */
    padding: 20px; /* Espaciado interno */
    display: flex; /* Usar flexbox para alinear elementos */
    align-items: center; /* Alinear verticalmente */
    justify-content: space-between; /* Espaciar imagen y texto */
    border-top: 3px solid #444; /* Línea superior */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5); /* Sombra elegante */
}

footer img.footer-logo {
    max-height: 50px; /* Tamaño máximo de la imagen */
    margin-right: 20px; /* Separación del texto */
}

footer p {
    margin: 0; /* Eliminar márgenes predeterminados */
    font-size: 14px; /* Tamaño de fuente */
    text-align: center; /* Centrar el texto */
    flex: 1; /* Permitir que el texto ocupe espacio restante */
}

footer a {
    color: #1e90ff; /* Color azul para enlaces */
    text-decoration: none; /* Sin subrayado */
}

footer a:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse */
}

footer p .login {
    color: white;
}


#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    font-size: 14px;
}

#cookie-banner p {
    margin: 0;
    display: inline;
}

#cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}

#cookie-banner button:hover {
    background-color: #45a049;
}

