/* nav.css */

/* Navbar brand */
.navbar-brand {
    font-weight: bold;
    font-size: 20px;        /* exact size you want */
    font-family: Sans-Serif; 
    color: #cccccc !important; /* grey */
}

/* Navbar links */
.navbar-nav .nav-link {
    font-weight: bold;
    font-size: 20px;        /* exact size you want */
    font-family: Sans-Serif; 
    color: #cccccc !important; /* grey */
    margin-right: 1.5rem;   /* spacing between links */
}

/* Optional hover effect */
.navbar-nav .nav-link:hover {
    color: #ffffff !important; /* lighter on hover */
}

