body {
    overflow-y: hidden;
    padding-bottom: 0;
}
.header {
    display: flex;
    padding: 2.5rem 1rem 0 1rem;
    margin-bottom: 14px;
}
.header .btn-link {
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 0 4px;
    border-radius: 4px;
}
.header .btn-link span {
    font-weight: 400;
    color: #333;
    font-size: 17px;
    line-height: 22px;
}
.header .btn-link:active {
    background-color: rgba(255, 164, 27, 0.25);
}
.card {
    height: 100vh;
    border-radius: 28px 28px 0 0;
    padding: 16px 1rem 0 1rem;
}
.card .body {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 0 0.8rem 0;
    max-height: calc(100vh - 250px);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* Mencegah bounce effect mengganggu */
}
.card .body .header-list {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
.card .body .header-list .header-item {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    color: rgba(153, 153, 153, 1);
}
.card .body .header-list .header-item.tunjangan,
.card .body .data-list .item.tunjangan {
    flex: 2 1 0;
}
.card .body .header-list .header-item.saldo,
.card .body .data-list .item.saldo {
    flex: 1 1 0;
}
.card .body .data-list {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.card .body .data-list .data-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card .body .data-list .data-item .item {
    display: flex;
    column-gap: 20px;
}
.card .body .data-list .data-item .item .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    background-color: rgba(255, 245, 208, 0.75);
    border-radius: 999px;
}
.card .body .data-list .data-item .item .label-box {
    display: flex;
    flex-direction: column;
    column-gap: 7px;
}
.card .body .data-list .data-item .item .label-box h6 {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 0;
}
.card .body .data-list .data-item .item .label-box p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: rgba(153, 153, 153, 1);
    margin-bottom: 0;
}
.card .body .data-list .item.saldo {
    display: block;
    align-self: flex-start;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
}
