/* assets/css/buzz-slider.css */
/* Simplified Buzz Feature Styles */

.buzz-feature {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Courier New', monospace;
}

/* Toggle Button */
.buzz-toggle {
  background: var(--accent-blue);
  color: var(--background-color);
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--accent-blue-dark);
  transition: all 0.3s ease;
}

.buzz-toggle:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
}

.buzz-icon {
  font-size: 16px;
}

.buzz-label {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Panel for Links */
.buzz-panel {
  display: none;
  position: absolute;
  bottom: 50px; /* Position above the toggle */
  right: 0;
  background: #1a1a1a;
  border: 1px solid var(--accent-blue);
  border-radius: 5px;
  padding: 10px;
  width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.buzz-feature.open .buzz-panel {
  display: flex;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Individual Links */
.buzz-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 8px 10px;
  background: #2a2a2a;
  border-radius: 3px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.buzz-link:hover {
  background: var(--accent-blue);
  color: var(--background-color);
  transform: translateX(5px);
}

.buzz-link .buzz-arrow {
  transition: transform 0.2s ease;
}

.buzz-link:hover .buzz-arrow {
  transform: translateX(5px);
}

/* Loading/Error States */
.buzz-loading, .buzz-error {
  color: var(--text-dim);
  padding: 10px;
  text-align: center;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .buzz-feature {
    bottom: 10px;
    right: 10px;
  }

  .buzz-panel {
    width: calc(100vw - 40px);
    max-width: 280px;
  }
}
