/* Reset margins and paddings */
/* Main upper menu container */
.upper-menu {
    display: flex;
    align-items: center;
    background-color: #041512;
    padding: 10px 20px;
    width: calc(100% - 40px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Logo styling */
.upper-menu .logo {
    height: 130%;
}

/* Notification button styling */
.upper-menu .notification-container {
    position: relative;
    background-color: #061d19;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}


/* Notification badge styling */
/* .upper-menu .notification-badge {
    position: absolute;
    top: -0.5vw;
    right: -0.5vw;
    background-color: #14cbb4;
    color: white;
    border-radius: 50%;
    padding: 0.5vw;
    font-size: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* Balance container */
.upper-menu .balance-container {
    display: flex;
    align-items: center;
    background-color: #061d19;
    border-radius: 5px;
    padding: 0 10px;
    height: 50px;
    gap: 5px;
    /* align-content: center; */
    justify-content: center;
    /* align-items: safe; */
}

/* .upper-menu .balance-icon {
    width: 3vh;
    height: 3vh;
} */

/* .upper-menu .balance-text {
    color: white;
    font-size: 2vh;
    font-family: Inter, sans-serif;
} */

/* .upper-menu .balance-text .decimal {
    color: gray;
    font-size: 1.5vh;
    font-family: Inter, sans-serif;
} */

/* Menu button */
.upper-menu .menu-icon {
    height: inherit;
}

/* General button reset */
.upper-menu .menu-button {
    background: none;
    border: none;
    cursor: pointer;
    height: 50px;
    padding: 0;
    width: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.upper-menu .menu-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 15px;
    /* Space between the elements */
}

.upper-menu .menu-container {
    height: 50px;
    width: 50px;
    background-color: #061d19;
    border-radius: 5px;
}

.upper-menu .menu-container button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.upper-menu .hamburger {
    width: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 7px;
    align-items: center;
}

.upper-menu .hamburger span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px; 
}

.upper-menu .menu-right>button:nth-child(2) {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}