.menu-bar {
    border-radius: 25px;
    height: fit-content;
    display: flex; /* استخدام flex هنا لضمان أن عناصر القائمة تظهر بجانب بعضها */
    background-color: rgba(0, 0, 0, .4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);  
    align-items: center;
    padding: 0 10px;
    margin: 10px 0 0 0;
}

.menu-bar ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.menu-bar li {
    margin: 0 8px;
}

.menu-bar li a {
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    padding: 12px 16px;
    display: block;
    position: relative;
    transition: .2s;
    white-space: nowrap;
}

.menu-bar li a::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: .2s;
    border-radius: 25px;
}

.menu-bar li a:hover::before {
    background: linear-gradient(to bottom, #e8edec, #d2d1d3);
    box-shadow: 0px 3px 20px 0px black;
    transform: scale(1.2);
}

.menu-bar li a:hover {
    color: black;
}