.table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    // overflow: hidden;
    overflow: visible;
    background: white;
}

.table-row {
    display: flex;
}

.table-cell {
    flex: 1;
    padding: 12px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    overflow: visible;
}

.table-cell a {
    margin-left: auto;
    margin-right: 10px;
}

.table-cell:last-child {
    border-right: none;
}

.table-row:last-child .table-cell {
    border-bottom: none;
}

.input-disabled{
    background-color: #eee;
    color: #999;
    pointer-events: none; /* Prevent interaction */
}