/* table-input-styles.css */
.auto-expand-input {
  width: 100%;
  min-width: 80px;
  max-width: 400px;
  padding: 6px 10px;
  font-size: 0.875rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}


.auto-expand-input[readonly] {
  background-color: #f8f9fa;
  cursor: default;
  border-color: #e9ecef;
}

.auto-expand-input[readonly]:hover {
  border-color: #7fa2c5;
}

.auto-expand-input[type="number"] {
  text-align: center;
}

.table-input-cell {
  position: relative;
  padding: 8px !important;
  min-width: 100px;
}

.table-responsive table {
  table-layout: auto !important;
}

.table-responsive th {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}