.cyber-stack-container {
  min-height: 80px;
  /* 3 rows * (40px card + 10px gap) + padding */
  max-height: 170px;
  /* Enable vertical scrolling */
  overflow-y: auto;

  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed #333;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  /* Align items to top if you want them to stack from top */
  align-content: flex-start;
  /* Prevents stretching if few items */

  /* Cyber Scrollbar Styling */
  scrollbar-width: thin;
  scrollbar-color: var(--neon-teal) rgba(0, 0, 0, 0.3);
}

/* Webkit Scrollbar for Chrome/Safari */
.cyber-stack-container::-webkit-scrollbar {
  width: 6px;
}

.cyber-stack-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

.cyber-stack-container::-webkit-scrollbar-thumb {
  background-color: var(--neon-teal);
  border-radius: 3px;
}

.empty-state {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: #444;
  font-style: italic;
  margin: auto;
  /* Centers it vertically if container is tall */
}

.token-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
  color: #e2e8f0;
  padding: 5px 10px;
  height: 40px;
  min-width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.token-card:hover {
  border-color: var(--neon-teal);
}

.token-card .remove-btn {
  margin-left: 10px;
  font-size: 16px;
  color: #ff4444;
  background: none;
  border: none;
  cursor: pointer;
}
