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 .header {
    display: flex;
    padding: 0;
    margin-bottom: 23px;
}
.card .header .form-group {
    position: relative;
    display: flex;
    align-items: center;
}
.card .header .form-group .filter-label {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
}
.card .header .form-group .filter-data {
    margin-left: 6px;
    margin-right: 6px;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    border: none;
    background: none;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    appearance: none;
    min-width: fit-content;
}
.card .header .form-group .filter-data:focus-visible {
    outline: none;
    box-shadow: none;
    border-radius: 0;
}
.card .body {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 0.8rem 0.5rem;
    max-height: calc(100vh - 180px);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* Mencegah bounce effect mengganggu */
}
.card .body .data-list {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.card .body .data-list .data-item {
    display: flex;
    align-items: center;
    column-gap: 18px;
    width: 100%;
    height: 58px;
    background-color: #fff;
    border-radius: 8px;
    padding: 0 1rem;
    box-shadow: 0px 4px 10px 0px rgba(195, 195, 195, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}
.card .body .data-list .data-item .action-image {
    margin-left: auto;
}
.card .body .data-list .data-item .item-label {
    display: flex;
    flex-direction: column;
    row-gap: 1px;
}
.card .body .data-list .data-item .item-label h6 {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 0;
    color: #333;
}
.card .body .data-list .data-item .item-label p {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    color: rgba(60, 60, 67, 0.6);
}
.card .body .data-list .data-item:active {
    background-color: rgba(195, 195, 195, 0.25);
}
