/* ═══════════════════════════════════════════════════════════════════════════
   DVB Partner-Portal – Premium CSS
   Exzellent Leben Immobilien GmbH
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Design-Tokens ──────────────────────────────────────────────────────── */
:root {
  --gold:       #c8a050;
  --gold-light: #e0be78;
  --gold-dark:  #a07830;
  --bg:         #0e0f14;
  --bg2:        #151720;
  --bg-card:    #1a1c26;
  --bg-card2:   #1f2130;
  --border:     rgba(200,160,80,0.15);
  --border-sub: rgba(255,255,255,0.06);
  --text:       #f0ede8;
  --text-muted: #8a8a9a;
  --text-faint: #5a5a6a;
  --accent:     #c8a050;
  --buy-color:  #3b82f6;
  --rent-color: #10b981;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}
a { color: var(--gold); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--gold-light); }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════════
   LOGIN-SEITE
   ═══════════════════════════════════════════════════════════════════════════ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(200,160,80,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(59,130,246,0.06) 0%, transparent 60%),
              var(--bg);
}

.login-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.login-bg-orb-1 {
  width: 500px; height: 500px;
  background: rgba(200,160,80,0.07);
  top: -100px; left: -100px;
}
.login-bg-orb-2 {
  width: 400px; height: 400px;
  background: rgba(59,130,246,0.05);
  bottom: -100px; right: -100px;
}

.login-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,160,80,0.08);
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.login-logo-img {
  height: 80px;
  width: auto;
  /* Logo hat weißen BG → invertieren für dunkles Theme */
  filter: brightness(0) invert(1);
  opacity: 0.92;
  /* Sanfter Glow-Effekt passend zu den Farben */
  drop-shadow: 0 0 20px rgba(200,160,80,0.3);
}

.login-divider { height: 1px; background: var(--border); margin: 0 0 24px; }

.login-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--text), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.login-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

.login-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  padding: 11px 14px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.login-error-icon { font-size: 1rem; flex-shrink: 0; }

.login-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.form-input-wrap { position: relative; }
.form-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 44px 13px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,160,80,0.12);
}
.form-input::placeholder { color: var(--text-faint); }

.pw-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1rem;
  color: var(--text-muted); padding: 4px;
}
.pw-toggle:hover { color: var(--gold); }

.login-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none; border-radius: var(--radius-sm);
  color: #0e0f14; font-family: inherit;
  font-size: 1rem; font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.18s;
  box-shadow: 0 4px 16px rgba(200,160,80,0.25);
}
.login-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,160,80,0.35);
}
.login-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.login-footer {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.8;
}
.login-footer a { color: var(--text-muted); }
.login-footer-small { margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header-logo {
  display: flex; align-items: center; gap: 12px;
}
.header-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex-shrink: 0;
}
.header-firma { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.header-sub { font-size: 0.72rem; color: var(--text-muted); }

.header-right {
  display: flex; align-items: center; gap: 12px;
}
.header-stand {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.stand-dot {
  width: 7px; height: 7px; border-radius: 50%;
  display: inline-block;
}
.stand-ok      { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.stand-loading {
  background: var(--gold);
  animation: pulse-dot 1s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.refresh-btn {
  background: var(--bg2); border: 1px solid var(--border-sub);
  border-radius: 8px; color: var(--text-muted);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s;
}
.refresh-btn:hover { border-color: var(--gold); color: var(--gold); }
.refresh-btn.spinning svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.logout-btn {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  color: #fca5a5;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.15s;
}
.logout-btn:hover {
  background: rgba(239,68,68,0.2);
  color: #fff;
  border-color: rgba(239,68,68,0.4);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, rgba(200,160,80,0.06) 0%, rgba(59,130,246,0.04) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 24px;
}
.hero-stats {
  display: flex; align-items: center; gap: 0;
}
.hero-stat {
  text-align: center; padding: 0 28px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  display: block;
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-lbl {
  display: block;
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 4px;
}
.hero-stat-sep {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ─── Filter-Leiste ──────────────────────────────────────────────────────── */
.filter-bar { border-bottom: 1px solid var(--border-sub); background: var(--bg); position: sticky; top: 65px; z-index: 90; }
.filter-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.filter-tabs { display: flex; gap: 0; }
.filter-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.filter-badge {
  background: var(--bg2);
  border: 1px solid var(--border-sub);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.filter-tab.active .filter-badge { background: rgba(200,160,80,0.12); border-color: rgba(200,160,80,0.2); color: var(--gold); }

/* ─── Main / Grid ────────────────────────────────────────────────────────── */
.main { padding: 32px 0 48px; }
.grid-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.objekte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ─── Objekt-Karte ───────────────────────────────────────────────────────── */
.obj-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  box-shadow: var(--shadow);
}
.obj-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,160,80,0.2);
  border-color: rgba(200,160,80,0.2);
}

/* Bild */
.obj-img-wrap {
  position: relative;
  padding-top: 62%;   /* 16:10 Verhältnis */
  overflow: hidden;
  background: var(--bg2);
  flex-shrink: 0;
}
.obj-img-wrap.no-img { display: flex; align-items: center; justify-content: center; }
.obj-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.obj-card:hover .obj-img { transform: scale(1.04); }
.obj-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: 0.3;
}
.obj-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px;
}
.obj-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.obj-badge-buy   { background: rgba(59,130,246,0.85); color: #fff; }
.obj-badge-rent  { background: rgba(16,185,129,0.85); color: #fff; }
.obj-badge-typ   { background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.1); }
.obj-img-count {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem; color: rgba(255,255,255,0.8);
}

/* Reserviert-Banner (über dem Bild) */
.obj-reserviert-banner {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, rgba(245,158,11,0.92), rgba(217,119,6,0.92));
  backdrop-filter: blur(4px);
  padding: 7px 14px;
  text-align: center;
  font-size: 0.82rem; font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* Content */
.obj-content {
  padding: 18px 18px 12px;
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.obj-titel {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.obj-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--text-muted);
}
.obj-preis {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}
.obj-preis-reserviert {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.obj-details {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.obj-detail {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.8rem; color: var(--text-muted);
}
.obj-detail-icon { font-size: 0.85rem; }
.obj-status {
  font-size: 0.72rem; color: var(--text-faint);
  margin-top: 4px;
}
.obj-status-reserviert {
  color: #f59e0b;
  font-weight: 600;
}

/* Footer */
.obj-footer {
  padding: 12px 18px 18px;
  border-top: 1px solid var(--border-sub);
}
.expose-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, rgba(200,160,80,0.12) 0%, rgba(200,160,80,0.06) 100%);
  border: 1px solid rgba(200,160,80,0.3);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.88rem; font-weight: 700;
  transition: all 0.18s;
}
.expose-btn:hover {
  background: rgba(200,160,80,0.2);
  border-color: rgba(200,160,80,0.5);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.expose-btn-disabled {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
  padding: 11px 16px;
  background: rgba(120,120,140,0.08);
  border: 1px solid rgba(120,120,140,0.2);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.88rem; font-weight: 600;
  cursor: default;
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
  text-decoration: none;
}

/* "Exposé anfordern" – grüner E-Mail-Button */
.expose-btn-anfordern {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 11px 16px;
  background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0.08) 100%);
  border: 1px solid rgba(16,185,129,0.35);
  border-radius: var(--radius-sm);
  color: #34d399;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  transition: all 0.18s;
  cursor: pointer;
}
.expose-btn-anfordern:hover {
  background: rgba(16,185,129,0.22);
  border-color: rgba(16,185,129,0.55);
  color: #6ee7b7;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16,185,129,0.2);
}

/* Erweiterte Details-Tabelle (Baujahr, Zustand, Courtage, Heizung) */
.obj-extra {
  margin: 10px 0 8px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border-sub);
  padding-top: 10px;
}
.obj-extra-item {
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px;
  font-size: 0.78rem;
}
.obj-extra-label {
  color: var(--text-faint);
  white-space: nowrap;
  flex-shrink: 0;
}
.obj-extra-val {
  color: var(--text-muted);
  font-weight: 500;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ─── Empty State ────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  max-width: 440px; margin: 0 auto;
}
.empty-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.4; }
.empty-state h2 { font-size: 1.3rem; margin-bottom: 10px; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.refresh-btn-lg {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; border-radius: var(--radius-sm);
  color: #0e0f14; font-family: inherit;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.18s;
}
.refresh-btn-lg:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,160,80,0.3); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-sub);
  background: var(--bg-card);
  padding: 16px 0;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-firma { font-size: 0.78rem; color: var(--text-faint); }
.footer-firma a { color: var(--text-muted); }
.footer-right { font-size: 0.72rem; color: var(--text-faint); }

/* ─── Toast ──────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(10px);
  transition: all 0.25s;
  pointer-events: none; z-index: 9999;
}
.toast-show { opacity: 1; transform: translateY(0); }
.toast-ok  { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.toast-err { background: rgba(239,68,68,0.15);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stat { padding: 8px 16px; }
  .objekte-grid { grid-template-columns: 1fr; }
  .login-card { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .filter-tab { padding: 12px 14px; font-size: 0.82rem; }
}
@media (min-width: 1200px) {
  .objekte-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1600px) {
  .objekte-grid { grid-template-columns: repeat(4, 1fr); }
}


/* =============================================================================
   ADMIN-BEREICH
   ============================================================================= */
.admin-badge {
  background: rgba(200,160,80,.15);
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.flash { border-radius: var(--radius-sm); padding: 12px 18px; margin-bottom: 1rem; font-size: 0.9rem; font-weight: 500; }
.flash-ok    { background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3); color: #6ee7b7; }
.flash-error { background: rgba(239,68,68,.15);  border: 1px solid rgba(239,68,68,.3);  color: #fca5a5; }
.admin-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 2rem; }
.admin-section-title { font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.admin-form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.admin-form-group { flex: 1; min-width: 200px; }
.admin-label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.admin-label-hint { font-weight: 400; color: var(--text-faint); font-size: 0.78rem; }
.admin-input { width: 100%; background: var(--bg2); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); color: var(--text); padding: 9px 14px; font-size: 0.9rem; font-family: inherit; transition: border-color .2s; outline: none; }
.admin-input:focus { border-color: var(--gold); }
.admin-input-sm { padding: 6px 10px; font-size: 0.85rem; }
.admin-btn { border: none; border-radius: var(--radius-sm); padding: 9px 18px; font-size: 0.88rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all .15s; }
.admin-btn-primary { background: var(--gold); color: #000; }
.admin-btn-primary:hover { background: var(--gold-light); }
.admin-btn-ghost { background: rgba(255,255,255,.06); color: var(--text-muted); border: 1px solid var(--border-sub); }
.admin-btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--text); }
.admin-btn-danger { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(239,68,68,.2); }
.admin-btn-danger:hover { background: rgba(239,68,68,.25); }
.admin-btn-sm { padding: 5px 10px; font-size: 0.82rem; }
.admin-inline-form { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius-sm); border: 1px solid var(--border-sub); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th { background: var(--bg2); color: var(--text-muted); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 10px 16px; text-align: left; border-bottom: 1px solid var(--border-sub); }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.admin-row-self td { background: rgba(200,160,80,.04); }
.admin-username { font-weight: 500; display: flex; align-items: center; gap: 8px; }
.admin-self-badge { background: rgba(200,160,80,.2); color: var(--gold); border-radius: 4px; padding: 2px 7px; font-size: 0.72rem; font-weight: 600; }
.admin-date { color: var(--text-muted); font-size: 0.82rem; }
.admin-actions { display: flex; gap: 6px; align-items: center; }
.role-badge { border-radius: 5px; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; letter-spacing: .04em; }
.role-admin { background: rgba(200,160,80,.2); color: var(--gold); }
.role-user  { background: rgba(148,163,184,.1); color: #94a3b8; }
.pw-change-form { background: var(--bg2); border: 1px solid var(--border-sub); border-radius: var(--radius-sm); padding: 10px; }
