body {
    overflow-y: hidden;
    padding-bottom: 0;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.header {
    display: flex;
    padding: 2.5rem 1rem 0 1rem;
    margin-bottom: 5px;
}
.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;
    position: relative;
}
.body .cv-photo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 402px;
}
.body .card {
    position: relative;
    height: 100vh;
    border-radius: 28px 28px 0 0;
    padding: 16px 1rem 0 1rem;
    align-self: stretch; /* ini default behavior */
    z-index: 3;
    margin-top: 272px;
}
.body .card .header {
    display: flex;
    column-gap: 10px;
    padding: 0;
    margin-bottom: 22px;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* Mencegah bounce effect mengganggu */
    /* Opsional: Sembunyikan scrollbar di beberapa browser */
    scrollbar-width: thin; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Chrome */
}
/* Sembunyikan scrollbar di Chrome/Safari/Opera */
.body .card .header::-webkit-scrollbar {
    height: 6px;
}
.body .card .header::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
/* Jika ingin scrollbar benar-benar tersembunyi */
.body .card .header::-webkit-scrollbar {
    display: none;
}
/* Pastikan item tidak menyusut */
.body .card .header > * {
    flex-shrink: 0;
}
.body .card .header .navigation-item {
    padding: 8px;
    box-shadow: none;
    background: none;
    background-color: rgba(153, 153, 153, 1);
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.23px;
    border-radius: 100px;
    outline: none;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.body .card .header .navigation-item.active {
    background-color: rgba(0, 122, 255, 1);
}
.card .body {
    position: relative;
    display: flex;
    align-items: baseline !important;
    flex-direction: column;
    padding: 0 0 0.8rem 0.5rem;
    max-height: calc(100vh - 425px);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* Mencegah bounce effect mengganggu */
}
.card .body .data-content {
    display: none;
    width: 100%;
    max-height: calc(100vh - 436px);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 1rem;
}
.card .body .data-content.show {
    display: block;
}
.card .body .data-content .info-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.card .body .data-content .info-container .info-item {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}
.card .body .data-content .info-container .info-item .title-label {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.23px;
}
.card .body .data-content .info-container .info-item .value-label {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.card
    .body
    .data-content
    .info-container
    .info-item
    .value-label
    .whatsapp-link {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    text-decoration: none;
    color: rgba(0, 122, 255, 1);
}
