/* Main form layout */
.vusa-st__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Search bar full width */
.vusa-st__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
}

/* Filters row under search bar */
.vusa-st__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Each filter select */
.vusa-st__filter {
  flex: 1 1 200px; /* grow/shrink, min width ~200px */
  display: flex;
}

.vusa-st__select {
  flex: 1;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

/* Search button aligned right */
.vusa-st__btn {
  align-self: flex-end;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #0ea5e9;
  background: #0ea5e9;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.vusa-st__btn:hover {
  background: #0284c7;
}

/* Table wrapper: horizontal scroll if needed */
.vusa-st__table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 12px;
}

/* Base table style */
.vusa-st__table {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px; /* force table to be reasonably wide */
  table-layout: auto; /* let columns size themselves by content */
  font-size: 14px;
}

/* Table cells */
.vusa-st__table th,
.vusa-st__table td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

/* Header row styling */
.vusa-st__table th {
  background: #f8fafc;
  font-weight: 600;
  white-space: nowrap;
}

.vusa-st__table td {
  white-space: normal;
  word-wrap: break-word;
}

/* Make Project Summary column wider */
.vusa-st__table th:nth-child(2),
.vusa-st__table td:nth-child(2) {
  min-width: 300px;
  max-width: 500px;
}


