/* public-chatbot-admin.html 専用スタイル
   元コード: web/public-chatbot-admin.html:14-34（分割時点の HEAD 基準・2026-07-19） */
.wrap { max-width:980px; margin:0 auto; padding:30px 20px }
/* 2026-07-23 (Round 13-2 B-5): transition: all を明示リスト化 */
.bot-card { background:var(--bg-2); border:1px solid var(--line); border-radius:10px; padding:18px; margin-bottom:14px; transition: transform .15s, background .15s, border-color .15s, box-shadow .15s, color .15s, opacity .15s }
.bot-card:hover { border-color:var(--accent); transform:translateY(-2px); box-shadow:0 6px 20px rgba(91,140,255,.15) }
.bot-header { display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:10px }
.bot-actions button { font-size:11px; padding:5px 10px; border-radius:6px; border:1px solid var(--line); background:var(--bg-3); color:var(--text); cursor:pointer; margin-left:4px }
.bot-actions button.primary { background:var(--accent); color:#fff; border:0 }
.bot-actions button.danger { background:rgba(248,113,113,.15); color:#f87171; border:1px solid #f87171 }
.url-box { background:var(--bg); border:1px dashed var(--accent); border-radius:6px; padding:8px 10px; font-family:Menlo,Consolas,monospace; font-size:11px; word-break:break-all; margin-top:8px }
.badge-status { font-size:10px; padding:3px 8px; border-radius:999px; background:rgba(74,222,128,.15); color:#4ade80; font-weight:bold }
.form-row { margin-bottom:14px }
.form-row label { display:block; font-size:11px; color:var(--text-2); margin-bottom:4px; font-weight:bold }
.form-row input, .form-row textarea, .form-row select { width:100%; background:var(--bg); color:var(--text); border:1px solid var(--line); border-radius:6px; padding:8px 10px; font-size:13px; font-family:inherit }
.form-row textarea { min-height:200px; font-family:Menlo,Consolas,monospace; font-size:12px; line-height:1.6 }
.note-card { background:rgba(248,113,113,.06); border:1px solid rgba(248,113,113,.35); border-radius:8px; padding:14px; margin:14px 0; color:#f87171; font-size:13px; line-height:1.7 }
/* 社内ワークスペース レスポンシブ */
@media (max-width: 920px) {
  .staff-workspace { grid-template-columns: 1fr !important }
  .staff-workspace iframe { height: 460px !important }
}
