/* Tailwind via CDN handles most styling — minor custom additions here. */

.tab-btn {
  background: transparent;
  color: rgb(71 85 105);
  font-weight: 500;
  border: 1px solid transparent;
  transition: background-color 120ms;
}
.tab-btn:hover { background: rgb(241 245 249); }
.tab-btn.active {
  background: rgb(238 246 255);
  color: rgb(58 99 230);
  border-color: rgb(217 234 255);
}

.row-hover:hover { background: rgb(248 250 252); }

#config-editor::-webkit-scrollbar { width: 8px; height: 8px; }
#config-editor::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
