/* FV-CMS-VENDORED v0.7.2 — DO NOT EDIT IN PLACE. Source: github.com/avidtech6/freshvibe-cms. To update, run: fvcms-update */
:root {
  --bg: #0b0d11; --panel: #14181f; --panel-2: #1a1f27;
  --border: #2a3038; --text: #e6e9ef; --text-mid: #b8bfca;
  --text-dim: #7a8290; --accent: #7cf0a0; --accent-2: #5fa8ff;
  --accent-3: #c084fc; --r-sm: 4px; --r-md: 6px; }

.fes-motion-entrance { padding: 12px; }
.fes-grid-2x3 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fes-tile {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; transition: border-color 0.2s;
}
.fes-tile:hover { border-color: var(--text-mid); }
.fes-tile .fes-icon { font-size: 20px; color: var(--text-mid); }
.fes-tile .fes-label { font-size: 12px; color: var(--text); }
.fes-active { border-color: var(--accent-3); background: rgba(192, 132, 252, 0.1); }
.fes-active .fes-icon { color: var(--accent-3); }