/* Tombol Emerald Sultan Custom */
.btn-emerald-sultan {
    position: relative;
    background-color: #10b981; /* emerald-600 */
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 2rem;
    font-weight: 900;
    font-size: 11px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    border-bottom: 4px solid #065f46; /* emerald-800 */
    cursor: pointer;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -0.025em;
    overflow: hidden;
}

.btn-emerald-sultan:hover {
    background-color: #10b981; /* emerald-500 */
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-emerald-sultan:active {
    transform: scale(0.95);
    border-bottom-width: 0;
    margin-top: 4px;
}

/* Efek Glow Sultan */
/* Efek Glow Sultan - FIXED */
.btn-emerald-sultan .glow {
    position: absolute; /* Perbaikan: Gunakan position */
    top: 0; left: 0; right: 0; bottom: 0; /* Atau inset: 0; jika browser support */
    border-radius: 2rem;
    background: rgba(52, 211, 153, 0.2); 
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none; /* Biar gak ganggu klik tombol */
}

.btn-emerald-sultan:hover .glow {
    opacity: 1;
}

/* Icon Sultan Animation */
.btn-emerald-sultan .icon-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem;
    border-radius: 9999px;
    transition: transform 0.3s;
}

.btn-emerald-sultan:hover .icon-box {
    transform: rotate(12deg);
}

/* === [04] ANIMASI PENDAR EMERALD SULTAN === */

/* Indikator Hover pada Kartu */
.group:hover .w-1.5.h-1.5.bg-emerald-500 {
    box-shadow: 0 0 15px 5px rgba(16, 185, 129, 0.4);
    transform: scale(1.5);
    transition: all 0.4s ease;
}

/* Efek Hover Tabel Row */
tr.group {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

tr.group:hover {
    background-color: rgba(16, 185, 129, 0.03) !important;
    transform: scale(1.005);
    z-index: 10;
}

/* Badge Status Berpendar */
.group:hover .bg-emerald-500.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.5);
    letter-spacing: 0.1em;
}

/* Card Stats Glow */
.bg-white\/40.backdrop-blur-md:hover {
    border-color: var(--emerald-500);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.15);
    background-color: white;
}