:root {
  --accent: #0d6efd;
  --accent-soft: rgba(13, 110, 253, 0.1);
  --panel: #ffffff;
  --bg: #f2f4f7;
  --text: #1b1f24;
  --muted: #5f6b7a;
}

body {
  background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 45%),
              radial-gradient(circle at 10% 10%, rgba(255, 193, 7, 0.12), transparent 50%),
              var(--bg);
  color: var(--text);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-card {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(13, 110, 253, 0.28);
}

.card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #8a5a00;
}

.status-interview {
  background: rgba(13, 110, 253, 0.2);
  color: #0b3d91;
}

.status-hired {
  background: rgba(25, 135, 84, 0.2);
  color: #0f5132;
}

.status-rejected {
  background: rgba(220, 53, 69, 0.2);
  color: #842029;
}

.status-succeeded {
  background: rgba(25, 135, 84, 0.2);
  color: #0f5132;
}

.status-failed {
  background: rgba(220, 53, 69, 0.2);
  color: #842029;
}

.status-refunded {
  background: rgba(108, 117, 125, 0.2);
  color: #343a40;
}

.table thead th {
  color: var(--muted);
  font-weight: 600;
}

.btn-accent {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-accent:hover {
  background: #0b5ed7;
  color: #fff;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-header i {
  font-size: 1.4rem;
  color: var(--accent);
}

.form-control, .form-select {
  border-radius: 12px;
}

.tooltip-inner {
  background: #111827;
  color: #fff;
  font-weight: 600;
  padding: 6px 10px;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #111827;
}

@media (max-width: 991px) {
  .hero-card {
    padding: 20px;
  }
}
