/* THOMZY.com — cursor picker UI styles */
/* Trail particles are now rendered on a canvas by trail-engine.js */
.cursor-theme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 10px;
}

.cursor-theme-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 52px;
  padding: 4px 2px 4px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.15s, border-color 0.15s, background 0.15s;
  background: rgba(255,255,255,0.04);
}
.cursor-theme-item:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
}
.cursor-theme-item.active {
  opacity: 1;
  border-color: currentColor;
  background: rgba(255,255,255,0.12);
}
.cursor-theme-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
}
.cursor-theme-none-icon {
  font-size: 24px;
  line-height: 32px;
  display: block;
  text-align: center;
  width: 32px;
  height: 32px;
}
.cursor-theme-label {
  font-size: 9px;
  text-align: center;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50px;
}

/* =========================================================
   TRAIL PICKER — header profile panel
   ========================================================= */
.trail-effect-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 6px 0 10px;
}

.trail-btn {
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: inherit;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.trail-btn:hover {
  opacity: 1;
  background: rgba(255,255,255,0.12);
}
.trail-btn.active {
  opacity: 1;
  border-color: currentColor;
  background: rgba(255,255,255,0.15);
}

/* Points section in profile panel */
.chat-points-balance {
  font-weight: bold;
  color: #ffd700;
  font-size: 13px;
}
.points-invis-btn {
  margin-top: 6px;
  width: 100%;
  text-align: left;
}
.points-invis-btn.active {
  border-color: #64c8ff;
  color: #64c8ff;
  cursor: default;
}
