.modal#menu-modal {
    padding: 20px;
    position: fixed;
    background-color: #061d19;
    height: calc(100% - 40px);
    box-sizing: border-box;
    top: 72px;
    z-index: 1000;
    width: 100%;
    border-radius: 30px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    overflow-y: auto;
}

.modal#menu-modal .menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.modal#menu-modal .menu-header img {
    width: 40px;
    height: 40px;
}

.modal#menu-modal .menu-header span {
    background-color: #00ff91;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 14px;
    color: white;
}

.modal#menu-modal .menu-section {
    margin-bottom: 20px;
}

.modal#menu-modal .menu-section h3 {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.modal#menu-modal .menu-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    /* color: white; */
    text-decoration: none;
    font-size: 16px;
    /* border-bottom: 1px solid #253441; */
    /* font-weight: 400; */
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.modal#menu-modal .menu-item img {
    margin-right: 15px;
    width: 24px;
    height: 24px;
}

.modal#menu-modal .menu-item:hover {
    color: #00ff91;
}

.modal#menu-modal .user-info {
    display: flex;
    flex-direction: row;

}

.modal#menu-modal .user-info img {
    width: clamp(79px, 15vw, 150px);
    height: auto;
    border-radius: 10px;
    margin-right: 15px;
}

.modal#menu-modal .user-name {
    padding-top: 10px;
    font-size: clamp(16px, 3vw, 30px);
    color: white;
}

.modal#menu-modal .logout-button {
    width: clamp(30px, 7.5vw, 45px);
    height: clamp(30px, 7.5vw, 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    background-color: rgba(255, 0, 0, 0.7);
    top: clamp(75px, 15vw, 145px);
}

.modal#menu-modal .sign {
    width: 17px;
    height: 17px;
    fill: rgba(255, 255, 255, 0.9);
}

.modal#menu-modal .faq-button {
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin: auto; */
	position: absolute;
	bottom: 8%;
	right: 8%;
	z-index: -1;
	background-color: rgba(0,0,0,0.3);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
}
.modal#menu-modal .faq-button svg {
    height: 30px;
    width: auto;
}