.table {
    border: 3px solid #F2F4F7;
}
.table-header {
    background-color:#F2F4F7;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.table td, .table th {
    white-space: normal;

}

.table .table-body td {
    white-space: normal;
    max-width: 150px;
}

.table-body {
    background-color: white;
    font-weight: 400;
    font-size: 14px;

}

.limited-width {
    max-width: 10px; /* Set your desired maximum width */
    white-space: nowrap; /* Prevent text from wrapping to a new line */
    overflow: ellipsis; /* Hide overflow content */
    text-overflow: ellipsis; /* Add ellipsis (...) for overflowing text */
}
