/* First-time user guide styles */

/* Collapsible panel styles */
.toggle-collapse {
  cursor: pointer;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  transition: background-color 0.2s;
}

.toggle-collapse:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.toggle-collapse:after {
  content: "▶";
  font-size: 12px;
  margin-left: 10px;
}

.toggle-collapse.active:after {
  content: "▼";
}
.highlight-pulse {
  animation: pulse 1.5s infinite;
  border: 2px solid #ffaa00;
  border-radius: 6px;
  position: relative;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,170,0, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,170,0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,170,0, 0); }
}

.tooltip-guide {
  position: absolute;
  background: #ffaa00;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}