.card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 8px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.stat-box span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d6efd;
}

.stat-box small {
  color: #6c757d;
}

.token-text {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-badge {
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 12px;
}

.status-unused {
  background-color: #d1e7dd;
  color: #0a3622;
}

.status-used {
  background-color: #f8d7da;
  color: #58151c;
}

.timestamp {
  font-size: 0.85rem;
  color: #6c757d;
}

#newTokenContainer {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.btn-action {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .token-text {
    max-width: 150px;
  }
} 