.nav-link {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #1c69f5;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: 0.6rem;
  transition: background-color 0.15s ease;
}
.btn-primary:hover {
  background-color: #1653e1;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #f1f5f9;
  color: #334155;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
  border-radius: 0.6rem;
  transition: background-color 0.15s ease;
}
.btn-secondary:hover {
  background-color: #e2e8f0;
}
.input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.input:focus {
  outline: none;
  border-color: #328bff;
  box-shadow: 0 0 0 3px rgba(50, 139, 255, 0.15);
}
table.data th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #e2e8f0;
}
table.data td {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.875rem;
}
table.data tr:last-child td {
  border-bottom: none;
}
