._record-box {
    background: #fff;
    width: 100%;
    margin-top: 30px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Bayangan lebih halus */
    border: 1px solid #ececec;
}

/* Label di bagian atas _record-box */
._record-box .label {
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    color: #333; /* Warna teks lebih kontras */
}

/* Daftar list dengan batas tinggi dan overflow */
._record-box .list-box {
    height: 190px;
    overflow-y: auto; /* Mengganti overflow hidden menjadi auto agar scroll saat overflown */
    padding-right: 10px; /* Memberikan padding untuk mencegah overlap scrollbar */
}

/* Item di dalam list */
._record-box .list {
    padding-top: 0.0133rem;
}

._record-box .list .item {
    margin-bottom: 0.2667rem;
    display: flex;
    align-items: center;
    padding: 0.2rem 0.3467rem;
    border-radius: 0.2667rem;
    background-color: #f4f4f4;
    transition: background-color 0.3s ease; /* Transisi untuk hover */
}

/* Hover effect pada item list */
._record-box .list .item:hover {
    background-color: #eaeaea;
}

/* Logo di dalam item list */
._record-box .list .item .record_logo {
    font-size: 0;
}

._record-box .list .item .record_logo img {
    width: 48px;
    height: 48px;
    border: 1px solid #ececec;
    border-radius: 50%;
}

/* Bagian teks di tengah item list */
._record-box .list .item .center {
    flex: 1;
    padding-left: 0.3733rem;
}

/* Judul teks utama (h1) */
._record-box .list .item .center .h1 {
    font-size: 16px;
    color: #333;
}

/* Nama yang ada di dalam h1 */
._record-box .list .item .center .h1 .name {
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Warna lebih kontras */
}

/* Nomor teks yang ada di sebelah nama */
._record-box .list .item .center .h1 .number {
    color: #ff2f2f;
    margin-left: 0.1067rem;
    font-weight: bold;
}

/* Teks subjudul (h2) */
._record-box .list .item .center .h2 {
    font-size: 14px;
    color: #999999;
}

