/* ==========================================================================
   TEAM ISHAN EVENTS — Admin Panel Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --adm-bg:        #0D0D14;
  --adm-sidebar:   #111118;
  --adm-card:      #17171F;
  --adm-border:    rgba(255,255,255,0.06);
  --adm-gold:      #C9A84C;
  --adm-gold-dim:  rgba(201,168,76,0.12);
  --adm-text:      #E0E0EC;
  --adm-muted:     #6A6A80;
  --adm-success:   #27AE60;
  --adm-danger:    #E74C3C;
  --adm-warning:   #F39C12;
  --adm-info:      #3498DB;
  --adm-sidebar-w: 260px;
  --adm-header-h:  64px;
  --adm-transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--adm-bg);
  color: var(--adm-text);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.adm-wrap { display: flex; min-height: 100vh; }

/* ── Sidebar ────────────────────────────────────────────────────────────── */
.adm-sidebar {
  width: var(--adm-sidebar-w);
  background: var(--adm-sidebar);
  border-right: 1px solid var(--adm-border);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  transition: transform var(--adm-transition);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.adm-sidebar::-webkit-scrollbar { width: 4px; }
.adm-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.adm-logo {
  padding: 20px 24px;
  border-bottom: 1px solid var(--adm-border);
  flex-shrink: 0;
}
.adm-logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--adm-gold);
  line-height: 1.3;
}
.adm-logo-sub {
  font-size: 0.65rem;
  color: var(--adm-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.adm-nav { padding: 16px 0; flex: 1; }
.adm-nav-group { margin-bottom: 8px; }
.adm-nav-group-label {
  padding: 8px 24px 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--adm-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.adm-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--adm-muted);
  transition: all var(--adm-transition);
  position: relative;
  border-radius: 0;
}
.adm-nav-item:hover {
  color: var(--adm-text);
  background: rgba(255,255,255,0.04);
}
.adm-nav-item.active {
  color: var(--adm-gold);
  background: var(--adm-gold-dim);
}
.adm-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--adm-gold);
  border-radius: 0 2px 2px 0;
}
.adm-nav-item .icon { font-size: 1.05rem; flex-shrink: 0; }
.adm-nav-badge {
  margin-left: auto;
  background: var(--adm-danger);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  min-width: 20px;
  text-align: center;
}

.adm-sidebar-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--adm-border);
  flex-shrink: 0;
}
.adm-user-info { display: flex; align-items: center; gap: 12px; }
.adm-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #F0D080);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0B0B0F;
  flex-shrink: 0;
}
.adm-user-name { font-size: 0.85rem; font-weight: 600; color: var(--adm-text); }
.adm-user-role { font-size: 0.7rem; color: var(--adm-muted); }
.adm-logout { margin-top: 12px; }
.adm-logout a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--adm-muted);
  transition: color var(--adm-transition);
}
.adm-logout a:hover { color: var(--adm-danger); }

/* ── Main Content ───────────────────────────────────────────────────────── */
.adm-main {
  margin-left: var(--adm-sidebar-w);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.adm-header {
  height: var(--adm-header-h);
  background: var(--adm-sidebar);
  border-bottom: 1px solid var(--adm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 40;
}
.adm-header-left { display: flex; align-items: center; gap: 16px; }
.adm-breadcrumb { font-size: 0.85rem; color: var(--adm-muted); }
.adm-breadcrumb span { color: var(--adm-text); }
.adm-header-right { display: flex; align-items: center; gap: 16px; }
.adm-header-action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--adm-transition);
}
.adm-header-action.primary {
  background: linear-gradient(135deg, #C9A84C, #F0D080);
  color: #0B0B0F;
}
.adm-header-action.primary:hover { opacity: 0.9; }
.adm-header-action.secondary {
  background: rgba(255,255,255,0.05);
  color: var(--adm-text);
  border: 1px solid var(--adm-border);
}
.adm-header-action.secondary:hover { background: rgba(255,255,255,0.08); }

/* ── Page Content ───────────────────────────────────────────────────────── */
.adm-content { padding: 32px; flex: 1; }
.adm-page-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--adm-text);
  margin-bottom: 4px;
}
.adm-page-desc { font-size: 0.85rem; color: var(--adm-muted); margin-bottom: 28px; }

/* ── Stat Cards ─────────────────────────────────────────────────────────── */
.adm-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.adm-stat-card {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--adm-transition);
}
.adm-stat-card:hover { border-color: rgba(201,168,76,0.2); }
.adm-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.adm-stat-icon.gold    { background: var(--adm-gold-dim); }
.adm-stat-icon.green   { background: rgba(39,174,96,0.12); }
.adm-stat-icon.blue    { background: rgba(52,152,219,0.12); }
.adm-stat-icon.purple  { background: rgba(155,63,190,0.12); }
.adm-stat-icon.red     { background: rgba(231,76,60,0.12); }
.adm-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--adm-text);
  line-height: 1;
}
.adm-stat-label { font-size: 0.78rem; color: var(--adm-muted); margin-top: 4px; }

/* ── Tables ─────────────────────────────────────────────────────────────── */
.adm-table-card {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: 12px;
  overflow: hidden;
}
.adm-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--adm-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.adm-table-title { font-size: 0.95rem; font-weight: 600; color: var(--adm-text); }
.adm-table-actions { display: flex; gap: 10px; align-items: center; }
.adm-search-input {
  padding: 8px 14px;
  background: var(--adm-bg);
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  color: var(--adm-text);
  font-size: 0.82rem;
  outline: none;
  width: 220px;
  transition: border-color var(--adm-transition);
}
.adm-search-input:focus { border-color: var(--adm-gold); }
.adm-table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead tr { background: rgba(255,255,255,0.02); }
th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--adm-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--adm-border);
  white-space: nowrap;
}
td {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--adm-text);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  vertical-align: middle;
}
tbody tr:hover { background: rgba(255,255,255,0.02); }
tbody tr:last-child td { border-bottom: none; }
.tbl-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--adm-border);
}
.tbl-actions { display: flex; gap: 8px; align-items: center; }

/* ── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-success  { background: rgba(39,174,96,0.15);  color: var(--adm-success); }
.badge-danger   { background: rgba(231,76,60,0.15);  color: var(--adm-danger); }
.badge-warning  { background: rgba(243,156,18,0.15); color: var(--adm-warning); }
.badge-info     { background: rgba(52,152,219,0.15); color: var(--adm-info); }
.badge-gold     { background: var(--adm-gold-dim);   color: var(--adm-gold); }
.badge-muted    { background: rgba(255,255,255,0.05); color: var(--adm-muted); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.adm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--adm-transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
.adm-btn-primary { background: linear-gradient(135deg, #C9A84C, #F0D080); color: #0B0B0F; }
.adm-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.adm-btn-secondary { background: rgba(255,255,255,0.06); color: var(--adm-text); border: 1px solid var(--adm-border); }
.adm-btn-secondary:hover { background: rgba(255,255,255,0.1); }
.adm-btn-danger { background: rgba(231,76,60,0.12); color: var(--adm-danger); border: 1px solid rgba(231,76,60,0.2); }
.adm-btn-danger:hover { background: rgba(231,76,60,0.2); }
.adm-btn-success { background: rgba(39,174,96,0.12); color: var(--adm-success); border: 1px solid rgba(39,174,96,0.2); }
.adm-btn-sm { padding: 5px 10px; font-size: 0.75rem; }
.adm-btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 8px;
  justify-content: center;
}

/* ── Forms ──────────────────────────────────────────────────────────────── */
.adm-form-card {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: 12px;
  padding: 28px;
}
.adm-form-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--adm-border);
}
.adm-form-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.adm-form-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--adm-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.adm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.adm-form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.adm-form-group { margin-bottom: 16px; }
.adm-form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--adm-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.adm-form-label .req { color: var(--adm-danger); }
.adm-input,
.adm-select,
.adm-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--adm-bg);
  border: 1px solid var(--adm-border);
  border-radius: 8px;
  color: var(--adm-text);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--adm-transition);
}
.adm-input:focus, .adm-select:focus, .adm-textarea:focus { border-color: var(--adm-gold); }
.adm-input::placeholder, .adm-textarea::placeholder { color: var(--adm-muted); }
.adm-select option { background: var(--adm-card); }
.adm-textarea { resize: vertical; min-height: 100px; }
.adm-checkbox-group { display: flex; align-items: center; gap: 10px; }
.adm-checkbox { width: 18px; height: 18px; accent-color: var(--adm-gold); cursor: pointer; }
.adm-checkbox-label { font-size: 0.875rem; color: var(--adm-text); cursor: pointer; }
.adm-form-hint { font-size: 0.72rem; color: var(--adm-muted); margin-top: 4px; }

/* ── Image Upload ───────────────────────────────────────────────────────── */
.adm-upload-zone {
  border: 2px dashed var(--adm-border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--adm-transition);
  position: relative;
}
.adm-upload-zone:hover, .adm-upload-zone.dragover {
  border-color: var(--adm-gold);
  background: var(--adm-gold-dim);
}
.adm-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.adm-upload-icon { font-size: 2.5rem; margin-bottom: 8px; color: var(--adm-muted); }
.adm-upload-text { font-size: 0.88rem; color: var(--adm-muted); }
.adm-upload-text strong { color: var(--adm-gold); }
.adm-upload-preview {
  margin-top: 16px;
  display: none;
}
.adm-upload-preview img {
  max-height: 200px;
  border-radius: 8px;
  margin: 0 auto;
  border: 1px solid var(--adm-border);
}
.adm-upload-preview.visible { display: block; }
.adm-current-image {
  margin-bottom: 12px;
}
.adm-current-image img {
  height: 100px;
  border-radius: 8px;
  border: 1px solid var(--adm-border);
}
.adm-current-image-label { font-size: 0.72rem; color: var(--adm-muted); margin-top: 4px; }

/* ── Modals ─────────────────────────────────────────────────────────────── */
.adm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 24px;
}
.adm-modal-overlay.active { opacity: 1; pointer-events: all; }
.adm-modal {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
  padding: 28px;
  transform: scale(0.95);
  transition: transform 0.2s ease;
}
.adm-modal-overlay.active .adm-modal { transform: scale(1); }
.adm-modal-title { font-size: 1.05rem; font-weight: 700; color: var(--adm-text); margin-bottom: 8px; }
.adm-modal-desc { font-size: 0.875rem; color: var(--adm-muted); margin-bottom: 24px; }
.adm-modal-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ── Flash Messages ─────────────────────────────────────────────────────── */
.adm-flash {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.adm-flash-success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.25); color: var(--adm-success); }
.adm-flash-error   { background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.25);  color: var(--adm-danger); }
.adm-flash-info    { background: rgba(52,152,219,0.12); border: 1px solid rgba(52,152,219,0.25); color: var(--adm-info); }

/* ── Pagination ─────────────────────────────────────────────────────────── */
.adm-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px;
}
.adm-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--adm-bg);
  border: 1px solid var(--adm-border);
  color: var(--adm-muted);
  cursor: pointer;
  transition: all var(--adm-transition);
  text-decoration: none;
}
.adm-page-btn:hover { border-color: var(--adm-gold); color: var(--adm-gold); }
.adm-page-btn.active { background: var(--adm-gold); border-color: var(--adm-gold); color: #0B0B0F; }

/* ── Enquiry Status Colors ───────────────────────────────────────────────── */
.status-new       { background: rgba(52,152,219,0.15); color: #3498DB; }
.status-contacted { background: rgba(243,156,18,0.15); color: #F39C12; }
.status-follow_up { background: rgba(155,63,190,0.15); color: #9B3FBE; }
.status-confirmed { background: rgba(39,174,96,0.15);  color: #27AE60; }
.status-completed { background: rgba(201,168,76,0.15); color: #C9A84C; }
.status-cancelled { background: rgba(231,76,60,0.15);  color: #E74C3C; }

/* ── Gallery Grid (Admin) ───────────────────────────────────────────────── */
.adm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.adm-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--adm-transition);
  aspect-ratio: 1;
  background: var(--adm-bg);
}
.adm-gallery-item:hover { border-color: var(--adm-gold); }
.adm-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.adm-gallery-item-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--adm-transition);
}
.adm-gallery-item:hover .adm-gallery-item-actions { opacity: 1; }
.adm-gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  padding: 8px 10px;
  font-size: 0.72rem;
  color: var(--adm-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Login Page ─────────────────────────────────────────────────────────── */
.adm-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--adm-bg);
  padding: 24px;
  background-image: radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 20%, rgba(155,63,190,0.06) 0%, transparent 50%);
}
.adm-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: 16px;
  padding: 40px;
}
.adm-login-logo {
  text-align: center;
  margin-bottom: 32px;
}
.adm-login-logo .brand { font-size: 1.2rem; font-weight: 700; color: var(--adm-gold); }
.adm-login-logo .sub { font-size: 0.72rem; color: var(--adm-muted); margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; }
.adm-login-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--adm-text);
  margin-bottom: 4px;
}
.adm-login-desc { font-size: 0.85rem; color: var(--adm-muted); margin-bottom: 28px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .adm-sidebar { transform: translateX(-100%); }
  .adm-sidebar.open { transform: translateX(0); }
  .adm-main { margin-left: 0; }
  .adm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .adm-form-row { grid-template-columns: 1fr; }
  .adm-content { padding: 16px; }
}

/* ── Admin Reels Grid & Type Selector ────────────────────────────────────── */
.adm-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.adm-reel-card {
  background: var(--adm-card);
  border: 1px solid var(--adm-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--adm-transition), border-color var(--adm-transition);
}

.adm-reel-card:hover {
  border-color: var(--adm-gold);
  transform: translateY(-3px);
}

.adm-reel-media {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #090D16;
  overflow: hidden;
}

.adm-reel-media video,
.adm-reel-media iframe,
.adm-reel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adm-reel-play-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  color: var(--adm-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.adm-reel-badge {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.adm-reel-badge.featured {
  top: 10px;
  right: 10px;
  background: var(--adm-gold);
  color: #000;
}

.adm-reel-badge.status {
  bottom: 10px;
  right: 10px;
}

.adm-reel-badge.status.published {
  background: rgba(39, 174, 96, 0.85);
  color: #FFF;
}

.adm-reel-badge.status.draft {
  background: rgba(243, 156, 18, 0.85);
  color: #FFF;
}

.adm-reel-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.adm-reel-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--adm-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.adm-reel-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--adm-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.adm-reel-desc {
  font-size: 0.8rem;
  color: var(--adm-muted);
  margin-bottom: 10px;
  line-height: 1.35;
}

.adm-reel-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--adm-muted);
  margin-bottom: 12px;
  margin-top: auto;
}

.adm-reel-actions {
  display: flex;
  gap: 8px;
}

.adm-type-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--adm-bg);
  border: 2px solid var(--adm-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--adm-transition);
}

.adm-type-card:hover {
  border-color: var(--adm-gold);
}

.adm-type-card.active {
  border-color: var(--adm-gold);
  background: rgba(201, 168, 76, 0.08);
}

.adm-type-card input[type="radio"] {
  accent-color: var(--adm-gold);
}

