/* AngkaNet Results Plugin - CSS v3 */

/* Plugin hanya menambah style yang tidak ada di theme */

/* Tabel override untuk plugin agar bekerja mandiri */
.results-section .an-results-table { border-radius:8px; overflow:hidden; }

/* Ensure overflow visible untuk dropdown */
.results-section { overflow:visible !important; }
.an-results-table tbody td { overflow:visible !important; }

/* Fallback badge animasi */
.an-fallback-badge {
    animation: anp-pulse 2s infinite;
}
@keyframes anp-pulse {
    0%,100% { opacity:1; }
    50%      { opacity:0.6; }
}

/* Loading spinner */
.angkanet-loading {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:35px;
    color:#888;
    font-size:14px;
}
.spinner {
    width:22px;
    height:22px;
    border:3px solid #eee;
    border-top-color:#c0392b;
    border-radius:50%;
    animation:spin .7s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* Paito cell hover */
.an-detail-panel [title]:hover {
    transform:scale(1.2);
    z-index:1;
    position:relative;
}
