/* Estilos para la ventana emergente de cookies */
.cookie-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro con opacidad */
    z-index: 9999;
}

.cookie-content {
    background-color: #fff;
    padding: 20px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-content h2 {
    font-size: 18px;
}

.cookie-option {
    margin: 10px;
}

.accept-cookies {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
