body {
    overflow-y: hidden;
    padding-bottom: 0;
}
.header {
    display: flex;
    padding: 2.5rem 1rem 0 1rem;
    margin-bottom: 47px;
}
.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);
}
.body:not(.card .body) {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}
.body h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    margin-bottom: 10px;
}
.body .btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 90px;
    border-radius: 100px;
    background-color: rgba(0, 122, 255, 1);
    border-color: rgba(0, 122, 255, 1);
    column-gap: 8px;
    margin-bottom: 32px;
}
.body .btn-secondary span {
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.06px;
    color: #fff;
}
.body .btn-secondary:active {
    background-color: rgba(0, 54, 169, 0.8);
    border-color: rgba(0, 54, 169, 0.8);
}
.body .card {
    height: 100vh;
    border-radius: 28px 28px 0 0;
    padding: 16px 1rem 0 1rem;
    align-self: stretch; /* ini default behavior */
}
.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;
    align-items: baseline !important;
    flex-direction: column;
    padding: 0 0 0.8rem 0.5rem;
    max-height: calc(100vh - 316px);
    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: 0.5rem;
    width: 100%;
}
.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 .item-label {
    display: flex;
    flex-direction: column;
    row-gap: 1px;
}
.card .body .data-list .data-item .item-label div {
    display: flex;
    align-items: center;
    column-gap: 9px;
}
.card .body .data-list .data-item .item-label div h6 {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    margin-bottom: 0;
}
.card .body .data-list .data-item .item-label p {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.08px;
    margin-bottom: 0;
    color: rgba(60, 60, 67, 0.6);
}
.card .body .data-list .data-item .time-label {
    margin-left: auto;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
}
#form-offcanvas {
    border-radius: 30px 30px 0 0;
    min-height: calc(100vh - 350px);
}
#form-offcanvas h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
}
#form-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    overflow: hidden;
}
#form-offcanvas .offcanvas-body .form-group input {
    border: 1px solid rgba(229, 242, 255, 1);
    background-color: rgba(229, 242, 255, 1);
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #333;
    padding: 20px 1rem;
}
#form-offcanvas .offcanvas-body .btn-primary {
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 164, 27, 1);
    color: #333;
    border-radius: 6px;
    border: 1px solid rgba(255, 164, 27, 1);
    margin-top: 36px;
}
#form-offcanvas .offcanvas-body .btn-primary:active {
    background-color: #cc7a00 !important;
    border-color: #cc7a00 !important;
}
