.light-style .menu .app-brand.custom {
    height: 64px;
}

.dark-style .menu .app-brand.custom {
    height: 64px;
}


.app-brand-logo.custom {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    width: 34px;
    height: 24px;
}

.app-brand-logo.custom img {
    width: 35px;
    height: 24px;
}

.app-brand-text.custom {
    font-size: 1.375rem;
}

.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 72px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
    z-index: auto;
}

.global-loader {
    position: fixed;
    z-index: 50000;
    background: #e6e6e8;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.form-loader {
    position: fixed;
    z-index: 50000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* .loader-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.loader-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.layout-toggle {
    position: fixed;
    right: 0;
    bottom: 2px;
    margin-left: 1em;
    margin-bottom: 1em;
    padding: 4px 5px;
    padding-right: 10px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
    opacity: 0.4;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.layout-toggle:hover {
    opacity: 1;
}

.notifyjs-wrapper,
.notifyjs-corner {
    z-index: 9999999999999999 !important
}

.rendered__match {
    background-color: yellow;
    color: black;
    /* font-weight: bold;
    padding: 0 2px; */
    border-radius: 2px;
}

input:disabled,
select:disabled,
button:disabled,
a.disabled-link,
textarea:disabled {
    cursor: not-allowed !important;

}


.popover {
    max-width: 100% !important;
}

.tabulator .tabulator-alert {
    background: none !important;
}

.tabulator-cell {
    cursor: default !important;
}

@media (max-width: 1334px) {
    .hide-text-custom {
        display: none !important;
    }
}

@media (min-width: 1335px) {
    .hide-text-custom {
        display: inline-block !important;
    }
}

.content-ajax-result {
    background-color: #012456;
    /* PowerShell dark blue */
    color: #eeeeee;
    /* Light text */
    font-family: Consolas, 'Courier New', monospace;
    padding: 1rem;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.4;
    overflow-y: auto;
    max-height: 400px;
    white-space: pre-wrap;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}

.content-ajax-result::after {
    content: "_";
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Jika checkbox benar-benar disabled */
input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Jika checkbox tidak disabled, tapi diberi class readonly */
input[type="checkbox"].readonly {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* Checkbox aktif biasa (bisa diklik) */
input[type="checkbox"]:not(:disabled):not(.readonly) {
    cursor: pointer !important;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    /* hitam semi transparan */
    padding: 10px;
    border-radius: 10px;
    color: #fff;
}

/* Navigasi panah */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    /* beri latar agar terlihat */
    background-size: 100% 100%;
    border-radius: 50%;
    padding: 20px;
}

/* Tambahan: perbesar panah */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

.tabulator-card {
    border: 1px solid #eee;
    padding: 12px;
    margin-bottom: 8px
}

.watermark-refund-status {
    position: absolute;
    top: 35px;
    left: 25px;
    font-size: 1rem;
    color: rgba(255, 0, 0, .6);
    background: rgba(255, 255, 255, .7);
    padding: 2px 6px;
    border-radius: 4px;
    transform: rotate(329deg);
    pointer-events: none;
    font-family: fantasy;
    z-index: 1
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    font-weight: 600;
    padding: 2px;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    text-transform: capitalize;
    transition: transform .2s, box-shadow .2s
}

.platform-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15)
}

.platform-shopee {
    background-color: #ee4d2d
}

.platform-tokopedia {
    background-color: #03ac0e
}

.tabulator-row.tabulator-selected {
    background-color: #e6f4ea !important;
    color: #000 !important
}

.tabulator-row.tabulator-selected .text-muted {
    color: #666 !important
}

.tabulator-row:hover {
    background-color: #d4e9ff !important
}

.tabulator-row.tabulator-selected:hover {
    background-color: #c8e6cb !important
}

.tabulator-row:not(.tabulator-selected):hover {
    background-color: #f0f8ff !important
}

.offcanvas-custom {
    width: 100% !important;
    max-width: 100%
}

@media (min-width:1100px) {
    .offcanvas-custom {
        width: 70vw !important;
        max-width: 1000px !important
    }
}

body {
    overflow-x: hidden;
}