/* ============================================================================
   SIDEBAR COLOR — picker em Conta › Preferencias
   ============================================================================ */
.cfsbc-picker { padding: 16px 0; }
.cfsbc-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.cfsbc-hint {
  font-size: 12px;
  color: var(--t2);
  margin: 0 0 12px;
}
.cfsbc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.cfsbc-swatch {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  display: flex; flex-direction: column;
  gap: 6px; align-items: stretch;
  transition: all 150ms;
  font-family: inherit;
}
.cfsbc-swatch:hover { background: var(--s2, #f8fafc); }
.cfsbc-swatch.is-active {
  border-color: var(--brand, #1E5BAA);
  background: color-mix(in srgb, var(--brand, #1E5BAA) 6%, transparent);
}
.cfsbc-prev {
  height: 64px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.cfsbc-prev-custom {
  background: linear-gradient(135deg, #1E5BAA, #d946ef, #f59e0b);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.cfsbc-prev-custom i { width: 22px; height: 22px; }
.cfsbc-prev-reset {
  background: linear-gradient(180deg, #0F2C5C 0%, #143C7E 50%, #0A1F44 100%);
  position: relative;
}
.cfsbc-prev-reset::after {
  content: 'padrao';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
}
.cfsbc-lbl {
  font-size: 11.5px;
  color: var(--text);
  text-align: center;
  font-weight: 500;
}
