
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    height: 70px;
    width: 375px;
    left: 50%;
    position: fixed;
    transform: translate(-50%);
    bottom: 0;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    }

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000000;
    text-decoration: none;
    font-size: 12px;
}

.nav-item img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-bottom: 5px;
}

.logo {
    background-color: #4e9f3d;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 10px;
}

