.bg-light {
  background-color: var(--color-card-bg) !important;
  color: var(--color-text) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.table {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: var(--color-card-bg);
  border-bottom: 2px solid var(--color-accent);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.03);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.warning-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #c92a2a 100%);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  border-left: 4px solid #fff;
}

.support-box {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 3rem;
}