/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Cambiar color de fondo del menú */
.navbar-main {
    background-color: #0040c5; /* Cambia este valor al color que desees */
}

/* Cambiar color del texto del menú */
.navbar-main .navbar-nav > li > a {
    color: #ffffff;
}

/* Color al pasar el ratón (hover) */
.navbar-main .navbar-nav > li > a:hover {
    color: #ffcc00;
}

/* Cambiar fondo y texto de todos los botones por defecto */
.btn {
    background-color: #0040c5 !important;  /* Fondo azul */
    color: #ffffff !important;             /* Texto blanco */
    border: none !important;
}

/* Cambiar color al pasar el mouse */
.btn:hover {
    background-color: #0040c5 !important;
    color: #ffffff !important;
}