/* cookie_banner.css - Estilos para el banner de cookies */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

#cookieBanner a {
    color: #4da6ff;
    text-decoration: underline;
}

#acceptCookies {
    background-color: #4da6ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#acceptCookies:hover {
    background-color: #007bff;
}
