.Menu_Fixed_Wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 70px;
}
.Menu_Coin_List {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #061329;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-bottom: none;
    transition: max-height 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
}
.Menu_Coin_List.open {
    max-height: 180px; /* 실제 콘텐츠 높이에 근접하게 */
    padding: 10px 20px 0px 20px;
    border-bottom: 1px solid #2a3458;
}

.Menu_Menu {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
.Menu_Coin_Row {
    display: flex;
    align-items: center;
    margin: 5px 0px 10px 0px;
}
.coin_symbol {
    font-size: 23px;
    font-weight: 700;
    margin: 0px 5px;
}
.coin_name {
    color: #9b9b9b;
    font-size: 13px;
    margin-right: 5px;
}
.coin_price {
    margin: 0px 10px;
}
.color_up {
    color: #10b981;
}
.color_down {
    color: #f43f5e;
}

.Menu_Coin_Icon {
    width: 35px;
    height: 35px;
    margin: 0px 10px;
    vertical-align: middle;
}

.Menu_Coin_Chart {
    width: 350px;
    height: 100px;
    background: #040b1b;
    border-radius: 4px;
    border: 1px solid #2a3458;
    padding: 15px;
}



.Menu_Link_Block {
    display: flex;
    justify-content: center;
}
.Menu_Link_Button {
    background: #061329;
    padding: 7px 40px 7px 40px;
    color: #fff;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid #2a3458;
    border-top: 0px;
    margin-top: -1px;
    cursor: pointer;
}
.Menu_Link_Button:hover {
    color: #00ff00;
}
