/* ====== NAV (SOLID PREMIUM NO BLUR) ========== */
.sa-bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #2f2f2f;
    /* SOLID DARK */
    padding: 16px 0 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999999;
    transition: transform .38s cubic-bezier(.25, .8, .25, 1);
    color: #fff;
    height: 60px;

    /* GOLD BORDER */
    border: 2px solid #c89b4b;
    border-radius: 14px 14px 0 0;

    /* GOLD GLOW */
    box-shadow: 0 0 12px rgba(200, 155, 75, 0.25);
}

/* REMOVE DIM MODE OPACITY */
.sa-bottom-nav.dim {
    opacity: 1 !important;
    /* tetap solid */
}

/* AUTO HIDING */
.sa-bottom-nav.hide {
    transform: translateY(120%);
}

/* ITEMS */
.sa-nav-item {
    width: 33.33%;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

/* ICONS */
.sa-nav-item svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
    margin-bottom: 2px;
}

/* TEXT */
.sa-nav-item span {
    font-size: 11px;
    color: #fff;
}

/* KAMUS WHITE BUTTON */
.sa-nav-center {
    position: relative;
    top: -10px;
}

.sa-kamus-box {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.sa-kamus-box svg {
    width: 26px;
    height: 26px;
    stroke: #c89b4b;
    stroke-width: 2.3;
    fill: none;
}

.sa-kamus-box span {
    color: #2f2f2f;
}

/* Toggle Capsule */
.sa-nav-handle {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999;
}

#sa-toggle-btn {
    background: #2f2f2f;
    /* SOLID DARK */
    border: 2px solid #c89b4b;
    color: #c89b4b;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

    transition: transform .18s ease;
}

#sa-toggle-btn:active {
    transform: scale(0.88);
}

/* rotate */
#sa-toggle-btn.rotate {
    transition: transform .25s ease;
}

/* Progress bar */
#sa-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #c89b4b;
    width: 0%;
    z-index: 999999;
    transition: width 0.1s ease-out;
}

.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}


.table-responsive-custom table {
    width: auto;
    max-width: none;
    border-collapse: collapse;
}


.table-responsive-custom td,
.table-responsive-custom th {
    white-space: nowrap;

}

.table-magnifier-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    backdrop-filter: blur(3px);
    z-index: 20;
    pointer-events: auto;
}

.table-wrapper-outer {
    position: relative;
    width: 100%;
}