nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(253, 249, 249, 0.878);
    padding: 10px;
    margin-bottom: 200px;
    }
    .active{
    font-weight: bolder;
    font-size: 16px;
    }
    
    ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    
    display: flex;
    }


    .navbar {
        padding: 0px !important;
    }
    
    nav img {
    height: 60px;
    }
    
    li {
    margin-right: 20px;
    }
    
    li:last-child {
    margin-right: 0;
    }
    
    li a {
    display: inline-block;
    color: black;
    padding: 10px 13px;
    text-decoration: none;
    font-size: 16px;
    }
    
    li a:hover {
    background-color: lightyellow;
    transition: 0.3s;
    border-radius: 5px;
    color: black;
    }
    /* Responsive Styles */
    @media only screen and (max-width: 768px) {
    nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    }
    
    .menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    }
    
    ul {
    width: 100%;
    justify-content: center;align-items: center;
    display: none;
    }
    
    ul.show-menu {
    display: flex;
    flex-direction: column;
    align-items: center; 
    }
    
    li {
    margin-right: 0;
    margin-bottom: 10px;
    }
    }
    .navbar-nav .nav-link[href="login.php"],
.navbar-nav .nav-link[href="register.php"] {
  border-radius: 20px; 
  padding: 8px 13px !important;
}

.navbar-nav .nav-item:not(.ml-auto) .nav-link:hover {
    background-color: orange;
    color:white !important;
    transition: background-color 0.4s ease;
  }
