text-table{
    display: block;
}

text-table .text-table-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

text-table .text-table-body{
    display: flex;
    flex-direction: column;
}

text-table .table-item{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
}
text-table .table-item:first-child{
    background-color: rgb(234,234,234);
}
text-table .table-item-text{
    padding: 10px;
}