.navbar2 {
    display: flex;
    align-items: center;
    background-color: #DAEFB3;
    padding: 0.2rem 0.4rem 0.2rem 0.4rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #444;
    flex-wrap: nowrap; /* Prevent navbar items from wrapping */
    overflow-x: auto; /* Enable horizontal scrolling if content overflows */ 
    justify-content: center;   
}

.navbar2 a {
    text-decoration: none;
    color: inherit;
    margin-right: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap; /* Prevent individual links from wrapping */
}

.navbar2 a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.navbar2 a:hover::before {
    width: 100%;
}

.navbar2 a.active {
    color: #3498db;
    font-weight: bold;
}