#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 15px;
    text-align: center;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

#cookie-notice p {
    margin: 0;
    margin-top: 10px;
}

#cookie-notice a {
    color: inherit;
    text-decoration: none;
}

#cookie-notice a:hover {
    font-weight: 600;
    color: #B1090B;
}

#cookie-notice button {
    background-color: #11345D;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}

#cookie-notice button:hover {
    background-color: #B1090B;
}

#cookie-notice button.deny {
    background-color: #ff0000; /* Color rojo para el botón de denegar */
}

/* Ocultar la notificación al agregar la clase 'hide' */
#cookie-notice.hide {
    display: none;
}