
:root {
    --tbw-cell-vertical-padding: 4px;
    --tbw-cell-horizontal-padding: 8px;
    --tbw-cell-line-height: 1.5em;
}

.wysiwyg-table {
	border-collapse:collapse;
    /* margin-bottom: var(--tbw-cell-line-height); */
}

.wysiwyg-table th, .wysiwyg-table td {
    /* height: calc(var(--tbw-cell-vertical-padding) * 2 + var(--tbw-cell-line-height)); */
    /* min-width: calc(var(--tbw-cell-horizontal-padding) * 2); */
	
	vertical-align:middle;
	
	
	
	 /* gpt 2025-11-12 */
    border: 1px solid #999;
    padding: 6px;
    min-width: 60px;
	
	
    user-select: none;   
    /* cursor: pointer; */
	
    position: relative;
}


.wysiwyg-table td:focus {
    outline: 2px solid #007bff; /* gpt 2025-11-12 */
}


.wysiwyg-table th .resize-handle, .wysiwyg-table td .resize-handle {
    position: absolute;
    right: -3px;
    top: 0;
    width: 6px;
    cursor: col-resize;
}