.jsme-box{

padding:25px;

border:1px solid #ddd;

border-radius:10px;

background:#fff;

}

.jsme-citation{

line-height:1.8;

font-size:15px;

word-break:break-word;

}

.jsme-tabs{

display:flex;

gap:10px;

margin:20px 0;

flex-wrap:wrap;

}

.jsme-tab{

padding:10px 20px;

cursor:pointer;

border:none;

background:#f2f2f2;

border-radius:6px;

}

.jsme-tab.active{

background:#0d6efd;

color:#fff;

}

#jsme-citation{

padding:20px;

border:1px solid #ddd;

border-radius:8px;

line-height:1.8;

margin-bottom:20px;

white-space:pre-wrap;

}

.jsme-actions{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(160px,1fr));

gap:12px;

}

.jsme-actions button{

padding:10px 20px;

cursor:pointer;

}

#jsme-floating-cite{

    position:fixed;

    right:20px;

    bottom:20px;

    background:#0B6E4F;

    color:white;

    border:none;

    padding:12px 20px;

    border-radius:30px;

    cursor:pointer;

    z-index:9999;

}

#jsme-modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.5);

    z-index:10000;

}

#jsme-modal-content{

    background:white;

    width:90%;

    max-width:900px;

    margin:50px auto;

    padding:20px;

    border-radius:10px;

}

#jsme-close{

    float:right;

    cursor:pointer;

    font-size:28px;

}