.alert {
  background: #1f2937;
  color: #fff;
  padding: 12px 16px;
  margin: 12px 0;
  border-left: 4px solid #f59e0b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alert:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.theme-dark {
  background: #0f1115;
}

.theme-light {
  background: #f8fafc;
}

.button-glow {
  position: relative;
  overflow: hidden;
}

.button-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.button-glow:hover::after {
  opacity: 1;
}

.fade-in {
  animation: fadeIn 0.8s ease;
}

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

.badge {
  display: inline-block;
  padding: 4px 10px;
  background: #f59e0b;
  color: #111827;
  border-radius: 999px;
  font-size: 12px;
}

.dropdown-panel {
  display: none;
  position: absolute;
  background: #111827;
  border: 1px solid #1f2937;
  padding: 12px;
  border-radius: 8px;
}

.dropdown-panel.open {
  display: block;
  animation: fadeIn 0.2s ease;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  min-width: 280px;
}

.tooltip {
  position: relative;
}

.tooltip:hover::after {
  content: attr(data-tip);
  position: absolute;
  top: -28px;
  left: 0;
  background: #111827;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.progress-bar {
  height: 6px;
  background: #1f2937;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 60%;
  background: #f59e0b;
  transition: width 0.6s ease;
}
