.table-editor-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.table-editor-box{
    width:90vw;
    height:85vh;
    background:#f8fafc;
    color:#222;
    border-radius:10px;
    padding:14px;
    overflow:auto;
}

.table-editor-toolbar{
    display:flex;
    gap:8px;
    margin-bottom:12px;
}

.table-editor-grid table{
    border-collapse:collapse;
    width:100%;
}

.table-editor-grid td{
    border:1px solid #bbb;
    padding:4px;
}

.table-editor-grid input{
    width:100%;
    border:none;
    padding:8px;
    font-size:15px;
    background:#fff;
}