.btn-gambar {
    background-image: url('/assets/btn_gambar.png');
    background-size: cover;
    background-position: center;
    border: 1px solid #b8b8b8; 
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    color: white !important; 
    min-width: 100px;
  }
  

  .btn-gambar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .btn-gambar p {
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }

  .btn-balimang {
    display: inline-flex!important;
    align-items: center!important;
    justify-content: center!important;
    gap: 10px!important; /* lebih rapi daripada me-2 */

    padding: 10px 20px!important;
    border-radius: 12px!important;

    background: rgba(255, 255, 255, 0.25) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4)!important;

    backdrop-filter: blur(12px)!important;
    -webkit-backdrop-filter: blur(12px)!important;

    box-shadow: 0 6px 15px rgba(0,0,0,0.08)!important;

    transition: all 0.25s ease!important;
    text-decoration: none!important;
}

/* ICON */
.btn-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* TEXT */
.font-balimang {
    font-family: "Oswald", sans-serif !important;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1;
    color: #3f3f3f;
    width: 100%;
    /* white-space: nowrap;  */
    overflow: hidden;
    line-height: 1.2;
    text-overflow: ellipsis;
    
}

/* DARK MODE */
[data-bs-theme="dark"] .font-balimang {
    color: #fff;
}
[data-bs-theme="dark"] .dark-text {
    color: #2368d8 !important;
}

/* HOVER EFFECT */
.btn-balimang:hover {
    background: rgba(255, 255, 255, 0.5)!important;
    border-color: rgba(255, 255, 255, 0.9)!important;
    transform: translateY(-3px) scale(1.02)!important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12)!important;
}

/* LOGIN TOMBOL */
:root {
    --radius: 70px;
    --item-size: 80px;
    --menu-size: 200px;
    --anim: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.landing-hero-btn {
    position: relative;
    display: inline-block;
    padding: 20px;
    z-index: 100;
}

.landing-hero-btn>* {
    position: relative;
    z-index: 2;
}

.landing-hero-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.branch-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--menu-size);
    height: var(--menu-size);
    opacity: 0;
    pointer-events: none;
}

.landing-hero-btn:hover .branch-menu,
.landing-hero-btn.active .branch-menu {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.btn_login {
    position: absolute;
    width: var(--item-size);
    height: var(--item-size);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.22) !important; */
    background: rgba(255, 255, 255, 0.67) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    text-decoration: none;
    color: #5a6cff;
    opacity: 0;
    transition: all var(--anim);
}

.btn_login i {
    font-size: 28px;
    margin-bottom: 4px;
}

.btn_login span {
    font-size: 14px;
    font-weight: 600;
}

.landing-hero-btn:hover .item-top,
.landing-hero-btn.active .item-top {
    top: calc(-1 * var(--radius));
    left: 50%;

    transform: translateX(-50%) scale(1);
    opacity: 1;

    transition-delay: .05s;
}

.landing-hero-btn:hover .item-right,
.landing-hero-btn.active .item-right {
    top: 50%;
    right: calc(-1 * var(--radius));

    transform: translateY(-50%) scale(1);
    opacity: 1;

    transition-delay: .1s;
}

.landing-hero-btn:hover .item-bottom,
.landing-hero-btn.active .item-bottom {
    bottom: calc(-1 * var(--radius));
    left: 50%;

    transform: translateX(-50%) scale(1);
    opacity: 1;

    transition-delay: .15s;
}

.landing-hero-btn:hover .item-left,
.landing-hero-btn.active .item-left {
    top: 50%;
    left: calc(-1 * var(--radius));

    transform: translateY(-50%) scale(1);
    opacity: 1;

    transition-delay: .2s;
}

.btn_login:hover {
    background: rgba(255, 255, 255, 0.763) !important;
    border-color: rgba(255, 255, 255, 0.61) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;

}

.main-btn {
    transition: all .3s ease;
}

.landing-hero-btn:hover .main-btn,
.landing-hero-btn.active .main-btn {
    transform: scale(.9);
}

.branch-menu.closing .btn_login {
    opacity: 0;
    transform: scale(.3);
}

.branch-menu.closing .item-top {
    transition-delay: .2s;
}

.branch-menu.closing .item-right {
    transition-delay: .15s;
}

.branch-menu.closing .item-bottom {
    transition-delay: .1s;
}

.branch-menu.closing .item-left {
    transition-delay: .05s;
}

.branch-menu.closing {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
}

.landing-hero-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%) scale(.6);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    z-index: 1;
}

.landing-hero-btn:hover::before,
.landing-hero-btn.active::before {

    opacity: 1;
    transform: translate(-50%, -50%) scale(1);

}

.landing-hero-btn {
    position: relative;
    z-index: 10;
}

.branch-menu {
    z-index: 2;
}

.main-btn {
    z-index: 3;
    position: relative;
}
/* BATAS LOGIN TOMBOL */

.pointer-tangan{
    cursor: pointer;
}
/* IKLAN POPUP */
/* .lowerlake-campaign { 
    display: none !important; 
} */
/* BATAS POPUP */

.icon-thema{
 font-size: 45px !important;
}
.bg-modal-header {
    background-image: url('/assets/img/asnbg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-modal-header > div {
    position: relative;
    z-index: 2;
}
.bg-modal-header .modal-title {
    color: #fff !important;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5); 
}

.bg-modal-header small.text-muted {
    color: #ddd !important; 
}

.bg-modal-header img {
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.5)); 
}

.border-bottom-style{
    border-bottom: 2px solid #0582fe !important;
}

/* Sembunyi Skin */
/* .template-customizer-layout,
.template-customizer-skins{
display: none !important;
} */
/* .template-customizer-layout{
display: none !important;
} */

.wrap-text {
    white-space: normal !important; 
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 300px; 
    vertical-align: top; 
}
/* .datatables-ajax{
    border: 0.8px solid #cccccc76 !important;
    
} */


.datatables-ajax.dataTable {
    border-collapse: collapse !important;
}
.datatables-ajax.dataTable th,
.datatables-ajax.dataTable td {
    border: 1px solid #d9dee3 !important;
}

[data-bs-theme="dark"] .datatables-ajax.dataTable th,
[data-bs-theme="dark"] .datatables-ajax.dataTable td {
    border: 1px solid rgba(217, 222, 227, 0.45) !important;
}

.b-darius{
    border-radius: 0 !important;
}

.card-border{
    border: 1px solid#d9dee3 !important;
    box-shadow: none !important;
}
[data-bs-theme="dark"] .card-border{
    border: 1px solid rgba(217, 222, 227, 0.45) !important;
    box-shadow: none !important;
}
.card .card-separator-bottom {
    /* margin: 0 1.5rem; */
    padding-bottom: 1rem;
    border-bottom: 1px solid #d9dee3;
}

@media (max-width: 767.98px) {
    .card .card-separator-bottom {
        /* margin: 0 1rem; */
        padding-bottom: 1rem;
    }
}
/* .is-invalid {
    border-width: 0.1rem !important;
    border-style: solid !important;
    border-color: rgba(255, 0, 0, 0.622) !important;
} */