.custom-sidebar {
    background-color: var(--bg-color2);
    position: fixed;
    top: 100px;
    right: 0;
    box-shadow: var(--shadow3);
    padding: 20px;
    z-index: 9999;
    border-radius: 20px 0 0 20px;
    border: 1px solid var(--border-color1);
    transition: var(--transition);
    transform: translateX(100%);
}
.custom-sidebar.active {
    transform: none;
}
.custom-sidebar .custom-toggle-sidebar-btn {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow3);
    border-radius: 15px 0 0 15px;
    font-size: 18px;
}
.wallet-item-container {
    overflow: auto;
    max-height: calc(100vh - 290px);
    min-height: 250px;
}
.wallet-box .wallet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wallet-box .wallet-item:not(:last-child) {
    margin-bottom: 20px;
}
.wallet-box .wallet-item .left-side {
    margin-right: 10px;
}
.wallet-box .wallet-item .middle-side {
    display: flex;
    gap: 10px;
    margin-right: 30px;
}
.wallet-box .wallet-item .middle-side .img-box {
    height: 50px;
    width: 50px;
    border: 1px solid rgba(231, 234, 243, 0.7);
    border-radius: 10px;
    box-shadow: 0 0.375rem 0.75rem rgba(140, 152, 164, 0.075);
    padding: 10px;
}
.wallet-box .wallet-item .right-side {
    text-align: right;
    flex-grow: 1;
}
.deposit-btn {
    border-radius: 8px;
    padding: 6px 10px;
    border: 1px solid var(--border-color1);
}
.deposit-btn:hover {
    box-shadow: var(--shadow1);
}
@media (max-width: 500px) {
    .custom-sidebar {
        max-width: 320px;
    }
}
@media (max-width: 400px) {
    .custom-sidebar {
        max-width: 290px;
    }
}
