input, select, textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgb(203 213 225);
  padding: 0.75rem 0.9rem;
  background: white;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgb(15 23 42);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08);
}
.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  color: rgb(203 213 225);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-link:hover { background: rgba(255,255,255,0.06); color: white; }
.nav-link.active { background: rgba(255,255,255,0.08); color: white; }
.card {
  background: white;
  border: 1px solid rgb(226 232 240);
  border-radius: 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  padding: 1.5rem;
}
.card .label {
  font-size: 0.875rem;
  color: rgb(100 116 139);
  margin-bottom: 0.5rem;
}
.card .value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.badge-green { background: rgb(220 252 231); color: rgb(22 101 52); }
.badge-rose { background: rgb(255 228 230); color: rgb(190 24 93); }
.badge-amber { background: rgb(254 243 199); color: rgb(180 83 9); }
.badge-slate { background: rgb(241 245 249); color: rgb(71 85 105); }

input[type='checkbox'] {
  width: 1rem;
  height: 1rem;
  border-radius: 0.35rem;
  padding: 0;
  vertical-align: middle;
}
