/*==================================================*/
/* POPUP NARASUMBER */
/*==================================================*/
.narasumber-popup{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
}
.narasumber-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(3px);
}
.narasumber-dialog{
    position:relative;
    width:min(460px,92%);
    max-height:80vh;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    z-index:2;
}
.narasumber-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border-bottom:1px solid #eee;
}
.narasumber-header-title{
    display:flex;
    align-items:center;
    gap:12px;
}
.narasumber-header-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff3cd;
    color:#856404;
    font-size:20px;
}
.narasumber-title{
    font-size:1rem;
    font-weight:700;
    color:#222;
}
.narasumber-subtitle{
    margin-top:2px;
    font-size:.76rem;
    color:#777;
}
.narasumber-close{
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    background:#f4f4f4;
    color:#666;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.narasumber-close:hover{
    background:#e9e9e9;
}
.narasumber-body{
    max-height:55vh;
    overflow-y:auto;
    padding:10px;
}
.daftar-narasumber{
    display:flex;
    flex-direction:column;
    gap:8px;
}
.narasumber-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px;
    border:1px solid #eee;
    border-radius:14px;
    background:#fff;
}
.narasumber-info{
    min-width:0;
    flex:1;
}
.narasumber-nama{
    font-size:.9rem;
    font-weight:600;
    color:#222;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.narasumber-status{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:3px;
    font-size:.74rem;
    color:#777;
}
.narasumber-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    display:inline-block;
}
.narasumber-dot.aktif{
    background:#198754;
}
.narasumber-dot.tidak-aktif{
    background:#dc3545;
}
.narasumber-action{
    flex-shrink:0;
}
.narasumber-action button{
    min-width:92px;
}
.narasumber-loading{
    min-height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#777;
    font-size:.85rem;
}
.narasumber-empty{
    padding:30px 15px;
    text-align:center;
    color:#777;
    font-size:.85rem;
}
.narasumber-footer{
    display:flex;
    justify-content:flex-end;
    padding:12px 18px;
    border-top:1px solid #eee;
}/* CSS Document */

