.text-right {
    text-align: right !important;
}
.text-nowrap {
    word-wrap: break-word !important;
}
.max-10dvw {
    max-width: 10dvw;
}
body {
    box-sizing: border-box;
    font-family: "SF Pro Display", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y; /* Izinkan vertical scroll pada child elements */
    background-color: #fff;
}
.container-sm {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
}
.header {
    display: flex;
    justify-content: space-between;
    padding: 2.5rem 1rem 0 1rem;
    margin-bottom: 34px;
}
.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(195, 195, 195, 0.25);
}
.header .btn-print {
    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;
    background-color: #ffa41b;
    color: #333;
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
}
.header .btn-print:active {
    background-color: #ff7e1b;
}
.body {
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 1rem 0.8rem 1.5rem;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* Mencegah bounce effect mengganggu */
}
.body .logo-container {
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 1rem;
}
.body .logo-container div {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
}
.body .information-container {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    margin-bottom: 19px;
}
.body .information-container h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 0;
}
.body .information-container p {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    margin-top: 0;
    margin-bottom: 0;
}
.body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.body table th,
.body table td {
    padding: 12px 10px;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    border: none;
    text-align: left;
}
.body table th {
    background-color: rgba(195, 195, 195, 0.25);
}
.body table tfoot th {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
}
.body .total-container {
    display: flex;
    height: 41px;
    width: 100%;
    align-items: center;
    background-color: rgba(255, 167, 30, 1);
}
.body .total-container .label {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    flex: 2 1 0;
    padding-left: 1rem;
}
.body .total-container .nominal {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    text-align: right;
    flex: 1 1 0;
    padding-right: 1rem;
}
/* UNTUK PRINT */
h6.printing {
    font-size: 18px !important;
}
p.printing,
th.printing,
td.printing,
.label.printing,
.nominal.printing {
    font-size: 14px !important;
}
th.printing,
td.printing {
    padding: 8px 10px !important;
}
