/* Forzar fondo blanco en el menú */
nav, .menu-bar, header, #menu-bar, .navbar, .top-nav {
   background-color: #ffffff !important; /* Fondo Blanco */
}

/* Forzar color rojo en los enlaces del menú */
nav a, .menu-bar a, header a, #menu-bar a, .navbar a, .top-nav a {
   color: #ff0000 !important; /* Rojo */
   font-weight: bold;
}

/* Cambiar color del texto al pasar el mouse */
nav a:hover, .menu-bar a:hover, header a:hover, #menu-bar a:hover, .navbar a:hover, .top-nav a:hover {
   color: #cc0000 !important; /* Rojo más oscuro */
}

/* Asegurar que no haya sombras ni bordes de color */
nav, .menu-bar, header, #menu-bar, .navbar, .top-nav {
   box-shadow: none !important;
   border: none !important;
}