/* MST_STS_L ステータスマスタ一覧画面 */

[data-testid="mst-sts-l-screen"] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', 'Meiryo', sans-serif;
}

[data-testid="mst-sts-l-screen"] [data-testid="screen-title"] {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a2e;
  border-bottom: 2px solid #0f3460;
  padding-bottom: 8px;
}

/* 検索条件エリア */
[data-testid="mst-sts-l-screen"] [data-testid="search-condition-area"] {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

[data-testid="mst-sts-l-screen"] [data-testid="search-condition-area"] input[type="text"] {
  padding: 6px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.875rem;
  min-width: 160px;
}

[data-testid="mst-sts-l-screen"] [data-testid="search-condition-area"] select {
  padding: 6px 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.875rem;
  min-width: 160px;
}

[data-testid="mst-sts-l-screen"] [data-testid="search-condition-area"] input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ボタン共通（画面スコープ） */
[data-testid="mst-sts-l-screen"] button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

[data-testid="mst-sts-l-screen"] [data-testid="search-button"] {
  background: #0f3460;
  color: white;
}

[data-testid="mst-sts-l-screen"] [data-testid="search-button"]:hover {
  background: #0a254a;
}

[data-testid="mst-sts-l-screen"] [data-testid="clear-button"] {
  background: #6c757d;
  color: white;
}

[data-testid="mst-sts-l-screen"] [data-testid="clear-button"]:hover {
  background: #5a6268;
}

[data-testid="mst-sts-l-screen"] [data-testid="new-registration-button"] {
  background: #22c55e;
  color: white;
  margin-bottom: 12px;
}

[data-testid="mst-sts-l-screen"] [data-testid="new-registration-button"]:hover {
  background: #16a34a;
}

/* 検索結果グリッド */
[data-testid="mst-sts-l-screen"] [data-testid="results-grid"] {
  overflow-x: auto;
}

[data-testid="mst-sts-l-screen"] [data-testid="results-table"] {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

[data-testid="mst-sts-l-screen"] [data-testid="results-table"] th {
  background: #0f3460;
  color: white;
  padding: 10px 12px;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}

[data-testid="mst-sts-l-screen"] [data-testid="results-table"] td {
  padding: 8px 12px;
  border-bottom: 1px solid #dee2e6;
}

[data-testid="mst-sts-l-screen"] [data-testid="results-table"] tr:hover td {
  background: #e8f4f8;
}

[data-testid="mst-sts-l-screen"] [data-testid="no-data-message"] {
  text-align: center;
  padding: 24px;
  color: #6c757d;
  font-size: 0.875rem;
}

[data-testid="mst-sts-l-screen"] [data-testid="loading-indicator"] {
  text-align: center;
  padding: 24px;
  color: #0f3460;
  font-size: 0.875rem;
}
