#transaction-menu {
    background-color: #72838D;
    width: 80%;
    max-height: 90%;
    overflow-y: scroll;
    flex-direction: column;
    overflow: visible;
}
.transactions-table {
    display: flex;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    padding-bottom: 0.1%;
    box-sizing: border-box;
    flex-direction: column;
    scrollbar-width: none;
    overflow: auto;
}
.transactions-table-row {
    display: flex;
    width: 100%;
    padding-bottom: 1vw;
    padding-top: 1vw;
    box-sizing: border-box;
    border-bottom: 0.2vw solid black;
    justify-content: space-between;
}
.table-col1 {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-col2 {
    width: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-col3 {
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-col4 {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-col5 {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-col6 {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-text {
    font-size: 2.5vw;
    padding-bottom: 2%;
}
.transaction-menu-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 1.5%;  
    background-image: url('../assets/design/buisness_menu.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    box-sizing: border-box;
    position: relative;
    justify-content: center;
    align-items: center;
    max-height: 90vw;
    scrollbar-width: none;
    overflow: auto;
}
.claim-deposit-button {
    display: flex;
    width: 100%;
    aspect-ratio: 96 / 34;
    background-image: url('../assets/design/grey_button_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    justify-content: center;
    align-items: center;
}
.claim-deposit-text {
    font-size: 2.2vw;
    text-align: center;
}
.deposit-arrow {
    width: 100%;
    aspect-ratio: 1/1;
    background-image: url('../assets/design/arrow_deposit.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
}
.withdraw-arrow {
    width: 100%;
    aspect-ratio: 1/1;
    background-image: url('../assets/design/arrow_withdraw.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
}
.img-claimed {
    width: 35%;
    aspect-ratio: 1/1;
    background-image: url('../assets/design/complete_order.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
}
.trans-text {
    font-size: 6vw;
    text-align: center;
}
.trans-empty-text {
    font-size: 10vw;
    text-align: center;
}