body {
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 0;
}
.header {
    display: flex;
    justify-content: space-between;
    padding: 2.5rem 1rem 0 1rem;
    margin-bottom: 13px;
}
.header .left-container {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}
.header .left-container .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 .left-container .btn-link span {
    font-weight: 400;
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.header .left-container .btn-link:active {
    background-color: rgba(37, 161, 142, 0.25);
}
.photo-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding: 0;
    padding-right: 1rem;
    padding-left: 1.6rem;
    /* Opsional: Sembunyikan scrollbar di beberapa browser */
    scrollbar-width: thin; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    margin-bottom: 13px;
}
/* Jika ingin scrollbar benar-benar tersembunyi */
.photo-container::-webkit-scrollbar {
    display: none;
}
/* Pastikan item tidak menyusut */
.photo-container > * {
    flex-shrink: 0;
}
.photo-container img {
    border-radius: 10px;
}
.card {
    border-radius: 28px 28px 0 0;
    padding: 0;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    border-bottom: 0;
    min-height: 100dvh;
    position: relative;
}
.card .card-header {
    border-bottom: 0;
    border-radius: 0;
    background: none;
    padding: 0 1rem;
    margin: 0;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0px;
}
.card .card-body {
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    background: none;
    padding: 0 1rem;
    margin: 0;
    padding-bottom: 0.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.card .card-body .item-container {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}
/* prettier-ignore */
.card .card-body .item-container .item-label {
    color: #858585;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
}
/* prettier-ignore */
.card .card-body .item-container .item-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
}
.card .card-footer {
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    background: none;
    padding: 0;
    margin: 0;
    height: 62px;
    width: 100%;
}
.card .card-footer .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    background-color: #25a18e;
    color: #fff;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0px;
}
.card .card-footer .btn-primary:active {
    background-color: rgba(37, 161, 142, 0.8);
}
.card .card-footer .btn-primary:disabled {
    background-color: rgba(211, 211, 211, 0.8);
    color: #333;
}
.alert {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -10;
}
.alert.show {
    z-index: 9999;
}
.alert.alert-primary {
    background-color: #1d8071;
    color: #fff;
    border-color: #1d8071;
}
