.WordCategoryTable {
    border: 1.5px solid #00000000;
    /* soft gray outline */
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    /* rounded corners */
    overflow: hidden;
    /* ensures corners are rounded for children */
}

.WordCategoryTable-header th {
    color: black !important;
}

.WordCategoryTable-body {
    border: rgba(135, 148, 147, 0.207) 1.5px solid;
    /* remove border from tbody */
}

.WordCategoryTable-body tr {
    border-color: rgb(255, 73, 240) 1.5px solid;

}

.WordCategoryTable-body td {
    border: none;
    overflow: visible;
    /* <-- change from hidden */
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
    vertical-align: top;
    /* or whatever fits your layout */
}

.WordCategoryTable-rowCard {
    border-top: 1.5px solid #e0e0e0;
    border-bottom: 1.5px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    padding: 0;
}

.WordCategoryTable,
.WordCategoryTable td,
.WordCategoryTable th,
.WordCategoryTable input,
.WordCategoryTable textarea,
.WordCategoryTable button {
    font-size: 0.85rem;
}