/* agn-global.css */
/* Consolidated from inline <style> blocks in Views */

:root {
  --bg: #1e1f22;
  --panel: #2b2d31;
  --panel2: #2a2b2f;
  --border: #3a3b40;
  --text: #fff;
  --accent: #f1c40f;
  --accentText: #ffd94a;
  --sidebarW: 150px;
  --sidebarWCollapsed: 75px;
  --accHeaderH: 28px;
}

html, body {
  height: 100%;
}

body {
  background: #1e1f22;
  color: #fff;
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row-1col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.left-sheetbar {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
  padding: 4px 2px 0 2px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  overflow-x: auto;
}

.tiny {
  font-size: .85rem; opacity: .85;
}

.save-btn {
  height: 26px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.20);
  background: #1e1f22;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  flex: 0 0 auto;
  user-select: none;
  white-space: nowrap;
}

.save-btn:hover {
  background: rgba(255,217,74,.12);
  border-color: rgba(255,217,74,.55);
  color: #ffd94a;
}

.save-btn .bi {
  font-size: 0.9rem; line-height: 1;
}

.info-btn:hover {
  background: rgba(255,217,74,.12); border-color: rgba(255,217,74,.55);
}

.chip button:hover {
  color: #fff;
}

.row-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: #2a2b30;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,.25);
}

.col-panel:hover {
  border-color: #f1c40f;
}

.key-section img:hover {
  transform: scale(1.02);
}

.table-container::-webkit-scrollbar {
  width: 10px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #555; border-radius: 6px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: #777;
}

