textarea{
    width:100%;
    padding:12px;
    box-sizing:border-box;
}

button{
    padding:10px 20px;
    cursor:pointer; margin-bottom: 11px;
}

.fbx-item{

    margin:15px 0;

    padding:15px;

    border:1px solid #ddd;

    border-radius:8px;

    background:#fff; color: #111827;

}


.fbx-card{
   background: #111827;
  border-radius: 12px;
 
  margin-bottom: 20px;
  margin-top: 20px;
}

.fbx-head{
    display:flex;
    justify-content:space-between;
    
    margin-bottom: 0px
}

.fbx-delete{
    cursor:pointer;
    color:#999;
    font-weight:bold;
    user-select:none;
}

.fbx-delete:hover{
    color:#d63638;
}

.fbx-textarea,
.fbx-form textarea,
.fbx-form input{
    width:100%;
    box-sizing:border-box;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
}

.fbx-btn{
    padding:10px 18px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.fbx-item{
    border-top:1px solid #eee;
    padding:15px ;
}

.fbx-item:first-child{
    border-top:none;
}

.fbx-success{
    background:#d32e3b;
    border:1px solid #d32e3b;
    padding:10px;
    border-radius:8px;
    margin-bottom:15px;
}


details{
   
    border-radius:10px;
    overflow:hidden;
}

summary{
    cursor:pointer;
    list-style:none;
    padding:14px 16px;
    font-weight:600;
    background:#fafafa;
    user-select:none; color: #111827;
}

summary::-webkit-details-marker{
    display:none;
}

details[open] summary{
    border-bottom:1px solid #ececec;
}

details > *:not(summary){
    padding:0px;
}


summary{
    list-style:none;
    cursor:pointer;
    font-weight:600;
    user-select:none;
}

summary::-webkit-details-marker{
    display:none;
}

/* Default (tertutup) */
summary::before{
    content:"▸ ";
    color:#666;
    font-size:14px;
}

/* Saat terbuka */
details[open] summary::before{
    content:"▾ ";
}




/* ======================================================
   ADMIN BUBBLE
====================================================== */

.fbx-admin-bubble{

    position:fixed;

    right:20px;

    bottom:20px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    cursor:pointer;

    z-index:999999;

    box-shadow:0 8px 30px rgba(0,0,0,.18);

    transition:.25s;

}

.fbx-admin-bubble:hover{

    transform:translateY(-3px);

}

.fbx-admin-bubble span{

    position:absolute;

    top:-4px;

    right:-4px;

    min-width:22px;

    height:22px;

    border-radius:30px;

    background:#ff3b30;

    color:#fff;

    font-size:11px;

    font-weight:bold;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0 5px;

}



/* POPUP */

.fbx-popup{

position:fixed;

right:20px;

bottom:90px;

width:300px;

background:#fff;

border-radius:12px;

box-shadow:0 10px 35px rgba(0,0,0,.18);

display:none;

z-index:999999;

overflow:hidden;

}

.fbx-popup.show{

display:block;

}

.fbx-popup-header{

padding:14px;

font-weight:bold;

background:#d52e3c;

color:#fff;

display:flex;

justify-content:space-between;

align-items:center;

}

#fbxClose{

cursor:pointer;

}





.fbx-popup-body{

    max-height:320px;

    overflow-y:auto;

    overflow-x:hidden;
    
    color: #111827;
    
     padding:8px;

}



.fbx-popup-body::-webkit-scrollbar{

    width:6px;

}

.fbx-popup-body::-webkit-scrollbar-thumb{

    background:#cfcfcf;

    border-radius:20px;

}

.fbx-popup-body::-webkit-scrollbar-thumb:hover{

    background:#999;

}




.fbx-popup-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:12px;

border-bottom:1px solid #eee;

text-decoration:none;

color:#222;

transition:.2s;

}

.fbx-popup-item:hover{

background:#f5f5f5;

}

.fbx-popup-item strong{

font-size:13px;

font-weight:600;

max-width:210px;

overflow:hidden;

white-space:nowrap;

text-overflow:ellipsis;

}

.fbx-popup-item span{

background:#2271b1;

color:#fff;

padding:3px 8px;

border-radius:30px;

font-size:11px;

font-weight:bold;

}



/* ==========================
   Feedback Accordion
========================== */

.fbx-accordion{
	
	margin-top: 30px;
    border:0px solid #111827;
    border-radius:12px;
    overflow:hidden;
    background:#111827;
}

.fbx-accordion summary{
    list-style:none;
    cursor:pointer;
    padding:16px 20px;
    font-weight:600;
    font-size:16px;
    user-select:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.fbx-accordion summary::-webkit-details-marker{
    display:none;
}

.fbx-accordion summary::after{
    content:"▼";
    font-size:12px;
    transition:.25s;
}

.fbx-accordion[open] summary::after{
    transform:rotate(180deg);
}

.fbx-accordion > *:not(summary){
    padding:0px;
    border-top:0px solid #eee;
}