@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* app/assets/stylesheets/admin.css */
/* ==========================================================================
   1. System Tokens & Variable Override
   ========================================================================== */
/* line 24, /opt/webroot/column/app/assets/stylesheets/admins.scss */
:root {
  --bg-sidebar: #0b0e1a;
  --bg-main: #f5f7fb;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --text-light: #ffffff;
  /* メインパープル・ネオン系 */
  --primary: #4f46e5;
  --primary-neon: #5c67ff;
  --btn-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --sidebar-active-bg: linear-gradient(90deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.02) 100%);
  --progress-gradient: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  /* 状態ステータスのカラーパレット(画像デザイン完全準拠) */
  --color-published: #10b981;
  --bg-published: #e6f4ea;
  --color-reserved: #8b5cf6;
  --bg-reserved: #f3e8ff;
  --color-draft: #f59e0b;
  --bg-draft: #fef3c7;
  --color-generating: #3b82f6;
  --bg-generating: #eff6ff;
  --color-error: #ef4444;
  --bg-error: #fde8e8;
  --border-color: #e2e8f0;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --radius-lg: 20px;
  --radius-md: 12px;
}

/* line 57, /opt/webroot/column/app/assets/stylesheets/admins.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 63, /opt/webroot/column/app/assets/stylesheets/admins.scss */
body.admin-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
}

/* line 70, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.admin-shell {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   2. Layout & Shell Core Settings
   ========================================================================== */
/* line 78, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.admin-sidebar {
  width: 260px;
  background-color: var(--bg-sidebar);
  color: #7e84a3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0 24px 0;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

/* line 95, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.admin-main {
  flex-grow: 1;
  padding: 32px 40px;
  margin-left: 260px;
  min-width: 0;
}

/* ==========================================================================
   3. Content Header & Global Actions
   ========================================================================== */
/* line 105, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.admin-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 112, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.header-left h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

/* line 119, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.header-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* line 125, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 検索窓（⌘Kショートカット付き） */
/* line 132, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.search-box-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 138, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
}

/* line 144, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.search-input {
  width: 280px;
  padding: 10px 40px 10px 38px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 13px;
  outline: none;
  color: var(--text-dark);
  transition: width 0.2s;
}

/* line 156, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.search-input:focus {
  width: 320px;
  border-color: #cbd5e1;
}

/* line 161, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.search-shortcut {
  position: absolute;
  right: 14px;
  font-size: 11px;
  background-color: #f1f5f9;
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

/* アイコン型ボタン */
/* line 173, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-icon-badge, .btn-icon-action {
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
}

/* line 187, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-icon-badge:hover, .btn-icon-action:hover {
  background-color: #f8fafc;
}

/* line 191, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.notification-dot {
  position: absolute;
  top: 10px;
  right: 11px;
  width: 7px;
  height: 7px;
  background-color: #3b82f6;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
}

/* line 202, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.sub-header-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

/* line 208, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-export {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 222, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-export .arrow-down {
  color: var(--text-muted);
  margin-left: 4px;
}

/* ==========================================================================
   4. Advanced KPI Section (ミニグラフ & サークルチャート)
   ========================================================================== */
/* line 230, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-main-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* line 237, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* line 243, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* line 255, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

/* line 262, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 268, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 276, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.icon-blue {
  background: #eff6ff;
  color: #3b82f6;
}

/* line 277, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.icon-green {
  background: #e6f4ea;
  color: #10b981;
}

/* line 278, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.icon-orange {
  background: #fef3c7;
  color: #f59e0b;
}

/* line 279, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.icon-purple {
  background: #f3e8ff;
  color: #8b5cf6;
}

/* line 281, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-card .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* line 287, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.trend {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

/* line 293, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.trend.up {
  color: #10b981;
  background: #e6f4ea;
}

/* line 294, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.trend.down {
  color: #ef4444;
  background: #fde8e8;
}

/* line 296, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-body .value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

/* line 303, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-body .comparison {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* line 309, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-chart {
  margin-top: 12px;
  height: 25px;
}

/* line 313, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.mini-graph {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* 右側：円形メーター付成功率カード */
/* line 320, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.kpi-success-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 331, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.success-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* line 340, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.success-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* line 346, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.score-box {
  margin-top: 16px;
}

/* line 350, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.score-avg {
  font-size: 11px;
  color: var(--text-muted);
}

/* line 355, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.score-value {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* line 360, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.score-value strong {
  font-size: 22px;
  color: var(--text-dark);
  margin-right: 4px;
}

/* line 366, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.progress-circle-box {
  position: relative;
  width: 80px;
  height: 80px;
}

/* line 372, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.circular-chart {
  width: 100%;
  height: 100%;
}

/* line 377, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.circle-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 3.5;
}

/* line 383, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.circle {
  fill: none;
  stroke: url(#circle-gradient);
  stroke-width: 3.5;
  stroke-linecap: round;
}

/* SVGグラデーションを有効化するためのダミー定義用スタイル */
/* line 391, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.progress-circle-box::before {
  content: "";
  position: absolute;
}

/* line 396, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.progress-circle-box .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}

/* ==========================================================================
   5. Filter & Segment Control Bar
   ========================================================================== */
/* line 409, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.filter-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* line 416, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.tabs-group {
  display: flex;
  background-color: #e2e8f0;
  padding: 4px;
  border-radius: 12px;
  gap: 2px;
}

/* line 424, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.15s;
}

/* line 437, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.tab-btn.active {
  background-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* line 443, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.count-badge {
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 10px;
  background-color: #f1f5f9;
  color: var(--text-muted);
}

/* line 450, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.count-badge.bg-primary {
  background-color: #eff6ff;
  color: #3b82f6;
}

/* line 455, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.dropdowns-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 461, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.filter-select {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 32px 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-dark);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* line 476, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-filter-toggle {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  cursor: pointer;
}

/* 一括画像生成パネル */
/* line 490, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-panel {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

/* line 498, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-panel h3 {
  font-size: 14px;
  margin-bottom: 12px;
}

/* line 499, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-panel .grid {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

/* line 500, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-panel .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 501, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-panel label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* line 502, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-panel select {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

/* line 503, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-panel button {
  background: var(--btn-gradient);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* ==========================================================================
   6. Rich Layout Table Styles (サムネイル・ステータス)
   ========================================================================== */
/* line 508, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 24px;
  /* バーの下に続くテーブルとの接合を調整 */
}
/* line 516, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar {
  /* インラインスタイルを上書き・補強 */
  display: flex !important;
  align-items: center;
  gap: 12px !important;
  padding: 14px 16px !important;
  background-color: #f8fafc;
  /* 薄いグレーの背景でテーブルヘッダーと差別化 */
  border: 1px solid #e2e8f0;
  border-bottom: none;
  /* テーブルと一体化させるために下線は無し */
  border-radius: 8px 8px 0 0;
  /* 上部だけ丸める */
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
  /* 一括操作用のボタンスタイル定義 */
}
/* line 529, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* 選択項目を承認・本文生成 (プライマリー) */
  /* 選択項目を削除 (危険・ベタ塗り仕様に修正) */
}
/* line 543, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar .btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
/* line 548, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar .btn:active {
  transform: scale(0.98);
}
/* line 553, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar .btn.btn-primary {
  color: #ffffff;
  background-color: #3b82f6;
  /* 鮮やかなブルー */
  border-color: #2563eb;
}
/* line 558, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar .btn.btn-primary:hover {
  background-color: #2563eb;
  border-color: #1d4ed8;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2), 0 2px 4px -1px rgba(59, 130, 246, 0.1);
}
/* line 566, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar .btn.btn-danger {
  color: #ffffff;
  background-color: #ef4444;
  /* 最初からパキッとした赤ベタ（Tailwindのred-500相当） */
  border-color: #dc2626;
}
/* line 571, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .bulk-action-bar .btn.btn-danger:hover {
  background-color: #dc2626;
  /* ホバーでさらに深い赤へ（Tailwindのred-600相当） */
  border-color: #b91c1c;
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.2), 0 2px 4px -1px rgba(239, 68, 68, 0.1);
}
/* line 581, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-wrap .rich-dashboard-table {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* line 587, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.rich-dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

/* line 592, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.rich-dashboard-table th {
  background-color: #f8fafc;
  padding: 14px 20px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

/* line 602, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.rich-dashboard-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  font-size: 13.5px;
}

/* line 609, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

/* 記事コンテンツ複合セル */
/* line 618, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.article-info-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* line 624, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.article-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #f1f5f9;
}

/* line 632, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.article-thumb-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* line 643, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.article-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 649, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.article-title {
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* line 655, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.article-tags {
  display: flex;
  gap: 4px;
}

/* line 660, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.tag-item {
  font-size: 11px;
  background-color: #f1f5f9;
  color: var(--text-muted);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ステータスバッジ各種 */
/* line 669, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* line 677, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.status-badge.published {
  color: var(--color-published);
  background: var(--bg-published);
}

/* line 678, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.status-badge.reserved {
  color: var(--color-reserved);
  background: var(--bg-reserved);
}

/* line 679, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.status-badge.draft {
  color: var(--color-draft);
  background: var(--bg-draft);
}

/* line 680, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.status-badge.generating {
  color: var(--color-generating);
  background: var(--bg-generating);
}

/* line 681, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.status-badge.error {
  color: var(--color-error);
  background: var(--bg-error);
}

/* line 683, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.status-badge-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 688, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.progress-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-generating);
}

/* line 694, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.category-text {
  color: var(--text-main);
  font-weight: 500;
}

/* AIモデルバッジ */
/* line 700, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.ai-model-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: 600;
  background-color: #ffffff;
  color: var(--text-dark);
}

/* line 712, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.model-icon {
  font-size: 12px;
}

/* line 714, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.date-text {
  color: var(--text-muted);
  font-size: 13px;
}

/* 品質スコアラジアル表現 */
/* line 720, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.quality-score-radial {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* line 730, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.quality-score-radial.high {
  border: 2px solid #10b981;
  color: #10b981;
}

/* line 731, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.quality-score-radial.mid {
  border: 2px solid #3b82f6;
  color: #3b82f6;
}

/* line 732, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.score-loading {
  font-size: 12px;
  color: var(--text-muted);
}

/* line 734, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.actions-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 740, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-row-action {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

/* line 747, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-row-action:hover {
  color: var(--text-dark);
}

/* line 748, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-row-action.action-stop {
  color: var(--color-error);
}

/* line 750, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.btn-row-menu {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: bold;
}

/* ==========================================================================
   7. Footer Pagination & Floating Action Button
   ========================================================================== */
/* line 761, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.table-footer-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

/* line 768, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.pagination-info, .per-page-selector {
  font-size: 13px;
  color: var(--text-muted);
}

/* line 773, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.per-page-selector select {
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

/* line 780, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.pagination-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 786, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.pager-btn, .pager-num, .pager-nav-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}

/* line 801, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.pager-num.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* line 807, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.pager-ellipsis {
  color: var(--text-muted);
  padding: 0 4px;
}

/* 右下フローティングネオンボタン */
/* line 813, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.floating-sparkle-btn {
  position: fixed;
  bottom: 32px;
  right: 40px;
  background: var(--btn-gradient);
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  cursor: pointer;
  z-index: 999;
}

/* ==========================================================================
   9. Pure CSS Separation & Underline Overrides (!important)
   ========================================================================== */
/* 一括更新アクションバーのレイアウトスタイル（Slimから完全移譲） */
/* line 846, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.bulk-action-bar {
  padding: 10px;
  display: flex;
  gap: 10px;
}

/* 記事タイトルやボタンなど、画面内の全リンクにおける下線の完全物理排除 */
/* line 853, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.rich-dashboard-table a,
.rich-dashboard-table a:hover,
.rich-dashboard-table a:focus,
.article-link,
.article-link:hover,
.article-link span,
.tabs-group a,
.tabs-group a:hover,
.sub-header-actions a,
.sub-header-actions a:hover,
.floating-sparkle-btn,
.floating-sparkle-btn:hover {
  text-decoration: none !important;
}

/* SVG内ミニグラフ（各カラー）の線と塗りつぶし装飾 */
/* line 869, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-line-blue {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 2;
}

/* line 870, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-area-blue {
  fill: url(#grad-blue);
  opacity: 0.1;
}

/* line 872, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-line-green {
  fill: none;
  stroke: #10b981;
  stroke-width: 2;
}

/* line 873, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-area-green {
  fill: url(#grad-green);
  opacity: 0.1;
}

/* line 875, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-line-orange {
  fill: none;
  stroke: #f59e0b;
  stroke-width: 2;
}

/* line 876, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-area-orange {
  fill: url(#grad-orange);
  opacity: 0.1;
}

/* line 878, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-line-purple {
  fill: none;
  stroke: #8b5cf6;
  stroke-width: 2;
}

/* line 879, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.graph-area-purple {
  fill: url(#grad-purple);
  opacity: 0.1;
}

/* SVG内成功率メーターのサークル装飾 */
/* line 882, /opt/webroot/column/app/assets/stylesheets/admins.scss */
.circle-gauge {
  fill: none;
  stroke: url(#circle-gradient);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 92, 100;
}

/* ブラウザ標準スタイルによる強制下線の最終防御 */
/* line 891, /opt/webroot/column/app/assets/stylesheets/admins.scss */
a:-webkit-any-link {
  text-decoration: none !important;
}
