.tariksaldo-form {
    /* border: 1px solid black; */
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topsaldo-wrapper {
    display: flex;
    flex-direction: row;
    gap: clamp(0.6rem, 3vw, 1rem);
    text-decoration: none;
}

.tariksaldo-content {
    /* padding: 1rem; */
    width: 100%;
    padding-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saldobalance-wrapper {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sb-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
}

.sb-detail img {
    width: 4% !important;
    height: fit-content;
}

.notice {
    padding: 0.6rem;
    display: flex;
    width: 100%;
    height: auto;
    background-color: #10accf37;
    align-items: center;
    gap: 1rem;
    border-radius: 8px;
}

.notice img {
    width: 4%;
    height: fit-content;
}

.footer-tariksaldo {
    width: 100%;
    max-width: 480px;
    position: fixed;
    bottom: 0;
    padding: 1rem 1rem 2rem 1rem;
    width: 100%;
    z-index: 99;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    /* shadow */
    -webkit-box-shadow: 0px -19px 10px -21px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px -19px 10px -21px rgba(0, 0, 0, 0.12);
    box-shadow: 0px -19px 10px -21px rgba(0, 0, 0, 0.12);
}

.total-tarik {
    width: 50%;
}

/* chatgpt code slide up */

.form-tarik {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
.input , .input[type='number'] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #00000010;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: left;
}
.overlay {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.overlay.active {
    display: block;
}
.bottom-sheet {
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: -100%;
    height: auto;
    width: 100%;
    max-width: 480px;
    background: white;
    border-top: 1px solid #0000000f;
    transition: bottom 0.3s ease-in-out;
    z-index: 1001;
}
.bottom-sheet.active {
    bottom: 0;
}

.bottomsheet-wrapper {
    padding: 1rem;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    gap: 0.5rem;
}

.bottomsheet-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-wrapper {
    height: 40vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    /* padding: 1rem; */
}

.bank-wrapper::-webkit-scrollbar {
    display: none; /* Menyembunyikan scrollbar pada browser berbasis Webkit */
}

.bank-item {
    padding: 15px 0;
    border-bottom: 1px solid #00000010;
    cursor: pointer;
}

.ft-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-bank {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    /* padding: 1rem; */
    background-color: white;
    width: 100%;
    /* border: 1px solid rgba(0, 0, 0, 0.033); */
    height: auto;

    /* shadow */
    -webkit-box-shadow: 0px 20px 10px -21px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 20px 10px -21px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 20px 10px -21px rgba(0, 0, 0, 0.1);
}

.input:focus-visible {
    outline: none;
    border: 1px solid #00000010;
}
.input::placeholder {
    text-align: left;
}
/* end of chatgpt slide up */
