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-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 - 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;
    margin-bottom: 18px;
}
.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.tanggal,
.card .body .data-list .data-item .item.tanggal {
    flex: 1 1 0;
}
.card .body .header-list .header-item.keterangan,
.card .body .data-list .data-item .item.keterangan {
    flex: 2 1 0;
}
.card .body .data-list {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.card .body .data-list .data-item {
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    height: 75px;
}
.card .body .data-list .data-item .item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.card .body .data-list .data-item .item h1 {
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 0;
}
.card .body .data-list .data-item .item.tanggal {
    row-gap: 0;
}
.card .body .data-list .data-item .item.tanggal p {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    color: rgba(153, 153, 153, 1);
    margin-bottom: 0;
}
.card .body .data-list .data-item .item p {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 0;
}
.card .body .data-list .data-item .item .item-location {
    display: flex;
    align-items: center;
    column-gap: 11px;
}
.card .body .data-list .data-item .item .item-time {
    display: flex;
    align-items: center;
    column-gap: 11px;
}
