﻿.NavLink {
    text-decoration: none;
    color: #007bff; /* Azul estilo link */
    cursor: pointer; /* Cursor de enlace */
    transition: color 0.3s ease; /* Transición suave al pasar el mouse */
}

.NavLink:hover {
    color: #0056b3; /* Azul más oscuro al pasar el mouse */
}

.NavLink-Negrita {
    text-decoration: none;
    color: #007bff; /* Azul estilo link */
    font-weight: bold; /* Negritas */
    cursor: pointer; /* Cursor de enlace */
    transition: color 0.3s ease; /* Transición suave al pasar el mouse */
}

.NavLink-Negrita:hover {
    color: #0056b3; /* Azul más oscuro al pasar el mouse */
}