/* navbar.css - Custom styling for the navbar */

/* Navbar link styling with hover effect */
.navbar-link {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.navbar-link:hover {
    background-color: #0D6ABF; /* Azul COMCE */
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure the navbar has a clean, professional look */
.navbar-container {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}