body {
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 0;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1rem 0 1rem;
    margin-bottom: 22px;
}
.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);
}
.header .left-container .filter-label {
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    margin-left: calc(9dvw - 1px);
}
.header .right-container .btn-upload {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    background-color: #fff;
    height: 40px;
    width: 130px;
    border-radius: 100px;
    outline: none;
    border: none;
    box-shadow: none;
}
.header .right-container .btn-upload:active {
    background-color: rgba(255, 255, 255, 0.8);
}
.card {
    border-radius: 28px 28px 0 0;
    padding: 24px 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    border-bottom: 0;
    min-height: 100dvh;
    position: relative;
}
.card .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 80px;
    border-bottom: 0;
    border-radius: 0;
    background: none;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
}
.card .card-header .btn-link {
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    padding: 0 8px;
}
.card .card-header .btn-link.active {
    color: #ce1bff;
    border-bottom: 2px solid #ce1bff;
}
.card .card-body {
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    background: none;
    padding: 0;
    margin: 0;
    padding-bottom: 0.5rem;
}
.card .card-body .data-content {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 1rem;
}
.card .card-body .data-content[data-id="data-informasi"] {
    flex-direction: column;
    row-gap: 10px;
}
.card .card-body .data-content[data-id="data-informasi"] .item-container {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}
/* prettier-ignore */
.card .card-body .data-content[data-id="data-informasi"] .item-container .item-label {
    color: #858585;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
}
/* prettier-ignore */
.card .card-body .data-content[data-id="data-informasi"] .item-container .item-value {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
}
.empty-upload-container {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    width: 100%;
}
.empty-upload-container img {
    opacity: 0.25;
    width: calc(100dvw - 115px);
    height: calc(100dvh - 391px);
    max-width: 260px;
    max-height: 260px;
}
.empty-upload-container p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #333;
    margin-bottom: 0;
}
.empty-upload-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 2px;
    border-bottom: 2px solid #ce1bff;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
}
.empty-upload-container .btn-link:active {
    color: #333;
}
.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}
.photos-grid img {
    height: 180px;
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
}
.alert {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -10;
}
.alert.show {
    z-index: 9999;
}
.alert.success {
    background-color: #1d8071;
    color: #fff;
    border-color: #1d8071;
}
.alert.failed {
    background-color: rgba(255, 0, 0, 0.25);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.25);
}
