body {
    box-sizing: border-box;
    font-family: "SF Pro Display", sans-serif;
    margin: 0;
    padding: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    touch-action: pan-y; /* Izinkan vertical scroll pada child elements */
}
.inter-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.background {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-image: url("/asset-webview/menset/images/bg-menset.png");
    background-repeat: no-repeat;
    background-size: 100% auto; /* Lebar 100%, tinggi otomatis mengikuti proporsi */
    background-position: top; /* Posisi di atas */
}
.container-sm {
    padding-left: 0;
    padding-right: 0;
}
.bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 7px 0 20px 0;
    border-top: 0.33px solid rgba(0, 0, 0, 0.3);
    z-index: 1000;
}
.bottom-navigation .navigation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px;
    color: #808080;
    flex: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.bottom-navigation .navigation-item.active {
    color: #25a18e;
}
.bottom-navigation .navigation-item .navigation-icon {
    height: 24px;
    width: 24px;
}
.bottom-navigation .navigation-item .navigation-label {
    font-size: 10px;
    line-height: 100%;
    font-weight: 500;
    color: #333;
}
#alert-component {
    display: none;
    background-color: #25a18e;
    border-color: #25a18e;
    position: fixed;
    transform: translateX(-25%);
    top: 60px;
    left: 30%;
    right: 0;
    z-index: 9999;
    border-radius: 10px;
    color: #333;
}
