body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  background: #0a0419;
  color: #fff;
}

.brand-header {
  padding: 24px 32px;
  background: linear-gradient(180deg, #2b0b47, #1b092a);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4754a5, #d3276e);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.25);
}

.brand-logo h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 13px;
  margin: 0;
  color: #fcd376;
  letter-spacing: 0.25em;
}

.tagline {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.panel {
  display: flex;
  gap: 20px;
  padding: 26px 32px;
  flex-wrap: wrap;
  background: #0f041f;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  min-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card.wide {
  width: 100%;
}

label {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

input {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-sizing: border-box;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

button {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2b0b47, #4754a5, #d3276e);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.primary {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.status {
  margin-top: 10px;
  font-size: 12px;
  color: #fcd376;
}

.hidden {
  display: none;
}

.user-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.user-row input {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.05);
}

.small-btn {
  background: #1d6ff2;
  border-radius: 10px;
}
.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  margin-left: 8px;
  color: #fff;
}
.users-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.hint {
  margin-top: 6px;
  font-size: 12px;
  color: #fcd376;
}
.hint a {
  color: #fff;
  text-decoration: underline;
}
