/**
 * Components Manager CSS - コンポーネント管理画面スタイル
 * pages-manager.cssで共通スタイルが定義されているため、
 * コンポーネント固有のスタイルのみ追加
 */

/* コンポーネント一覧テーブル */
.components-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.components-table thead {
  background: #f9fafb;
}

.components-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
}

.components-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.components-table tbody tr:hover {
  background: #f9fafb;
}

.components-table tbody tr.inactive-component {
  background-color: #f3f4f6;
}

.components-table tbody tr.inactive-component:hover {
  background-color: #e5e7eb;
}

.components-table code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 14px;
  color: #475569;
}

/* フィルタセレクト */
.filter-select {
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  background: white;
  cursor: pointer;
  min-width: 120px;
}

.filter-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* コンポーネントセクション */
.components-section {
  padding: 0;
}

/* セクションヘッダー左側 */
.section-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 通知コンテナ */
.notification-container {
  min-height: 24px;
}

/* ミュートテキスト */
.text-muted {
  color: #9ca3af;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .components-table {
    font-size: 14px;
  }

  .components-table th,
  .components-table td {
    padding: 8px 12px;
  }

  .filter-select {
    width: 100%;
    min-width: 0;
  }
}
