/* MST_STS_E ステータスマスタ登録・編集画面 */

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

[data-testid="mst-sts-e-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-e-screen"] [data-testid="form-area"] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

[data-testid="mst-sts-e-screen"] [data-testid="form-area"] input[type="text"],
[data-testid="mst-sts-e-screen"] [data-testid="form-area"] select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.875rem;
  box-sizing: border-box;
}

[data-testid="mst-sts-e-screen"] [data-testid="form-area"] input[readonly],
[data-testid="mst-sts-e-screen"] [data-testid="form-area"] select:disabled {
  background: #e9ecef;
  color: #495057;
}

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

/* メッセージ */
[data-testid="mst-sts-e-screen"] [data-testid="error-message"] {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

[data-testid="mst-sts-e-screen"] [data-testid="success-message"] {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

/* アクションボタンエリア */
[data-testid="mst-sts-e-screen"] [data-testid="action-area"] {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #dee2e6;
}

[data-testid="mst-sts-e-screen"] [data-testid="action-area"] button {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

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

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

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