/* =========================================
   1. THEME TOKENS & GLOBAL
   ========================================= */
:root {
  --green:#0e4d2e;    /* primary dark green */
  --purple:#4b1d63;   /* primary dark purple */
  --bg:#0b0b0f;
  --ink:#f3f4f6;
  --muted:#cbd5e1;
  --card:#16161c;
  --ok:#16a34a;       /* success button color */
  --no:#dc2626;       /* danger button color */
  --gold:#c8ad7f;     /* accent for separators/pills */
}

*{box-sizing:border-box}

body {
  margin:0; color:var(--ink);
  font-family:Cormorant Garamond, system-ui,-apple-system, Segoe UI, Roboto, Inter, Ubuntu, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at -10% -20%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(1000px 500px at 110% 120%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(135deg,var(--green), var(--purple));
}

/* Add this to force links to stay white */
a, a:visited {
  color: #ffffff;
  text-decoration-color: var(--gold); /* Optional: keeps the underline gold if you like that style */
}

a:hover {
  color: #ffffff;
  /* You can add text-decoration: underline; here if you want hover effects globally */
}


/* =========================================
   2. NAVBAR (STICKY)
   ========================================= */
.topnav {
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(8px);
  background:linear-gradient(135deg, rgba(14,77,46,.75), rgba(75,29,99,.75));
  border-bottom:1px solid rgba(255,255,255,.14);
}
.topnav .inner {
  max-width:1120px; margin:0 auto; padding:10px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.brand {
  display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none;
  font-weight:700; letter-spacing:.3px; font-size:24px;
}
.brand .script {font-family:'Great Vibes', cursive; font-size:28px}
.navlinks {display:flex; gap:10px; flex-wrap:wrap}
.navlinks a {
  text-decoration:none; color:#fff; font-weight:700;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
}
.navlinks a:hover {background:rgba(255,255,255,.14)}
.navlinks a.active {
    background: var(--green);
    color: var(--ink);
    border-color: rgba(255,255,255,.4);
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

/* Admin Link in Nav (Hidden by default) */
header #admin-link { display:none; }

/* =========================================
   3. HEADER / HERO
   ========================================= */
header { padding:56px 20px 28px; text-align:center; position:relative; }
header:before {
  content:""; position:absolute; inset:auto 0 0 0; height:10px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent); opacity:.7;
}
.title {font-weight:700; letter-spacing:0.5px}
.title .names {
  display:block; font-family:'Great Vibes', cursive;
  font-size: clamp(36px, 7vw, 84px); color:#fff
}
.title .date {
  display:block; font-size: clamp(14px, 2.5vw, 18px);
  color:var(--muted); margin-top:8px
}

/* =========================================
   4. CONTENT & CARDS
   ========================================= */
.container {max-width:1120px; margin:0 auto; padding:0 20px 80px}
.grid {display:grid; gap:16px}
@media(min-width:880px){.grid{grid-template-columns:1.2fr 1fr}}
.admin-wrap {max-width:1120px; margin:0 auto; padding:0 20px 80px}

.card {
  background:rgba(0,0,0,.28); backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,.10); border-radius:24px;
  padding:24px; box-shadow:0 12px 30px rgba(0,0,0,.35)
}
.stack {display:grid; gap:16px}
h1 {margin:0 0 12px 0; font-size:32px}
h2 {margin:0 0 12px 0; font-size:24px}
h3 {margin:0 0 8px 0; font-size:20px}
p {margin:0 0 10px 0}
.small {font-size:12px; color:var(--muted)}

.pill {display:inline-block; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06); font-size:12px}
.role {display:inline-block; font-weight:700; letter-spacing:.2px; color:#fff; background:rgba(200,173,127,.18); border:1px solid rgba(200,173,127,.45); padding:6px 10px; border-radius:999px; margin-bottom:8px}

/* Admin status badges */
.pill.ok {background:rgba(22,163,74,.15); border-color:rgba(22,163,74,.45)}
.pill.no {background:rgba(220,38,38,.15); border-color:rgba(220,38,38,.45)}
.pill.na {background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.25)}
.party-item.declined {border-color:rgba(220,38,38,.45)}

/* =========================================
   5. FORMS & BUTTONS
   ========================================= */
.field {display:grid; gap:8px; margin-bottom:12px}
.row {display:grid; gap:12px}
@media(min-width:640px){.row{grid-template-columns:1fr 1fr}}

input[type="text"], select, textarea, 
input[type="password"], input[type="number"], input[type="url"] {
  width:100%; padding:12px 14px; border-radius:12px;
  border:1px solid rgba(255,255,255,.14); background:#0b1220; color:var(--ink);
  font-family:inherit; font-size:1rem;
}
input[type="file"] { color:var(--muted); font-size:1rem; }
textarea {min-height:84px}

.btn {
  cursor:pointer; padding:12px 16px; border:none; border-radius:14px; font-weight:700; color:white;
  background:linear-gradient(135deg,var(--green),var(--purple)); box-shadow:0 6px 18px rgba(0,0,0,.3);
  transition: transform .06s ease, box-shadow .06s ease;
  display:inline-flex; align-items:center; justify-content:center; gap:6px; text-decoration:none;
}
.btn:hover {transform:translateY(-1px); box-shadow:0 10px 22px rgba(0,0,0,.35)}
.btn.secondary, .btn.btn-secondary {background:#27304a}
.btn.danger {background:var(--no)}
.btn.ok {background:var(--ok)}
.btn[disabled] {opacity:.6; cursor:not-allowed}

.btn.ghost {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: none; color: var(--muted);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05); border-color: #fff; color: #fff; transform: translateY(0);
}

/* =========================================
   6. MODULES: PARTY, MAP, COUNTDOWN
   ========================================= */
.party-item {background:var(--card); border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:16px}
.party-grid {display:grid; gap:12px}

.mapwrap {border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.08)}

.countdown {display:flex; justify-content:center; gap:14px; flex-wrap:wrap; margin-top:16px}
.timebox {min-width:92px; text-align:center; background:var(--card); border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:16px}
.timebox .num {font-size:32px; font-weight:800}
.timebox .label {font-size:12px; letter-spacing:1px; text-transform:uppercase; color:var(--muted)}

/* =========================================
   7. LISTS: ATTRACTIONS, HOTELS, RESTAURANTS
   ========================================= */
/* Grid Layouts */
.attractions, .hotels {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px;
}

/* Card Base */
.attraction, .hotel {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: 12px; transition: background 0.2s ease;
}
.attraction:hover, .hotel:hover { background: rgba(255, 255, 255, 0.06); }

/* Images */
.attraction img, .hotel img {
  width: 80px; height: 80px; object-fit: cover; border-radius: 12px; flex-shrink: 0; background: #000;
}
/* Hotel/Restaurant images slightly bigger/different ratio */
.hotel img, .restaurants .attraction img { width: 96px; height: 72px; border-radius: 8px; }
.restaurants .attraction img { object-fit:contain; background:#fff; padding:4px; }

/* Text Content */
.attraction .info, .hotel .info {
  flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; min-height: 80px;
}
.attraction .title, .hotel .title { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.attraction .title a, .hotel .title a {
  color: #fff; font-weight: 700; font-size: 18px; text-decoration: none; font-family: 'Cormorant Garamond', serif;
}
.attraction .title a:hover, .hotel .title a:hover { text-decoration: underline; text-decoration-color: var(--gold); }

/* Badges & Meta */
.attraction .meta, .hotel .meta { font-size: 13px; color: var(--muted); }
.badge { background: rgba(255, 255, 255, 0.1); padding: 2px 8px; border-radius: 6px; font-size: 12px; }
.hotel .badge.star, .stars { color: #fbbf24; font-weight:700; }
.stars { font-size: 15px; text-shadow: 0 1px 2px rgba(0,0,0,0.5); margin-bottom: 4px; }

/* List Buttons */
.chipbtn.infobtn {
  background: rgba(200, 173, 127, 0.2); color: var(--gold); border: 1px solid rgba(200, 173, 127, 0.4);
  width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: sans-serif; font-weight: bold; font-size: 12px; cursor: pointer; flex-shrink: 0;
}
.chipbtn.infobtn:hover { background: var(--gold); color: #000; }

.dirbtn { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }
.dirbtn:hover { text-decoration: underline; }

.attraction .meta .btn, .hotel .meta .btn {
  font-size: 11px; padding: 4px 10px; border-radius: 6px; margin-top: 8px; margin-right:4px; display: inline-block; line-height: 1.2;
}

/* =========================================
   8. REGISTRY SPECIFIC STYLES
   ========================================= */
/* Registry Grid (reusing generic list styles but specific class) */
.item-list {
  list-style:none; padding:0; margin:16px 0;
  display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:16px;
}
.item-card {
  display:flex; flex-direction:column; gap:12px; padding:12px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); border-radius:16px;
}
.item-card .item-image img {
  width:100%; height:200px; object-fit:cover; border-radius:10px; background:#fff; cursor:pointer;
}
.item-details { display:flex; flex-direction:column; gap:8px; min-width:0; flex-grow:1; }
.item-card h2 { font-size:1.25rem; font-weight:700; line-height:1.2; margin:0; color:var(--ink); }
.item-price { color:var(--ink); font-size:1.1rem; font-weight:700; }

.card-section-categories { display:flex; gap:6px; align-items:center; flex-wrap:wrap; min-height:24px; }
.item-category {
  display:inline-block; padding:2px 8px; border-radius:999px; font-size:.85rem;
  border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.06);
}
.item-actions {
  display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:auto; padding-top:12px; border-top:1px solid rgba(255,255,255,.1);
}
.item-actions form { margin:0; }

/* Filter Form */
.filter-form {
  background:transparent; padding:0; margin-bottom:0;
  display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; align-items:start;
}
.filter-form label { font-weight:600; display:block; margin-bottom:0.5rem; }
.filter-form select {
  padding:0.75rem; border-radius:8px; border:1px solid rgba(255,255,255,.2); font-size:1rem; width:100%;
  background-color:rgba(255,255,255,.1); color:var(--ink); font-family:inherit;
}
.filter-form .category-group, .filter-form .submit-group { grid-column:1 / -1; }
.category-list { display:flex; flex-wrap:wrap; gap:0.75rem; }
.category-checkbox {
  font-weight:normal; display:flex; align-items:center; gap:0.25rem; cursor:pointer;
  background:rgba(255,255,255,.05); padding:4px 8px; border-radius:6px; border:1px solid rgba(255,255,255,.1);
}

/* Sticky Filter Toggle */
#sticky-filter-section {
  position:sticky; top:80px; z-index:100; background:var(--card);
  padding:1.5rem; margin-bottom:2rem; border-radius:24px; border:1px solid rgba(255,255,255,.10);
  transition:padding 0.3s ease;
}
#sticky-filter-section.filters-collapsed { padding-top:1.5rem; padding-bottom:1.5rem; }
#sticky-filter-section.filters-collapsed .filter-form { display:none; }

/* Range Slider */
.dual-slider-container { width:100%; }
.range-slider { position:relative; height:8px; background:rgba(255,255,255,.2); border-radius:5px; }
.range-fill { position:absolute; height:100%; background:var(--green); border-radius:5px; }
.range-slider input[type="range"] {
  position:absolute; width:100%; top:-4px; height:16px; -webkit-appearance:none; appearance:none; background:transparent; pointer-events:none;
}
.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance:none; appearance:none; width:20px; height:20px; background:var(--ink);
  border-radius:50%; cursor:pointer; pointer-events:auto; border:2px solid var(--card); box-shadow:0 0 5px rgba(0,0,0,0.2);
}
.slider-values { display:flex; justify-content:space-between; margin-top:0.75rem; font-weight:600; color:var(--muted); }

.empty-list { text-align:center; font-size:1.2rem; color:var(--muted); background:var(--card); padding:2rem; border-radius:24px; }

/* Registry Admin & Login */
.login-container {
  max-width:450px; margin:5rem auto; padding:2.5rem; background:var(--card);
  border:1px solid rgba(255,255,255,.10); border-radius:24px; box-shadow:0 6px 18px rgba(0,0,0,.35);
}
.login-container h2 { text-align:center; font-family:'Great Vibes', cursive; font-size:42px; margin:0 0 2rem 0; }
.error, .message {
  color:var(--ink); background:rgba(14, 77, 46, 0.3); border:1px solid rgba(14, 77, 46, 0.7);
  padding:1rem; border-radius:12px; margin-bottom:1.5rem; text-align:center; font-weight:600;
}
.error, .message.error { color:#ff8a8a; background:rgba(220, 53, 69, 0.2); border:1px solid rgba(220, 53, 69, 0.5); }

.admin-card { background:var(--card); border:1px solid rgba(255,255,255,.10); border-radius:24px; padding:2rem; margin-bottom:2rem; }
.admin-card .form-group { display:grid; grid-template-columns:1fr 3fr; gap:1.5rem; align-items:center; }
.item-table { width:100%; border-collapse:collapse; margin-top:1.5rem; }
.item-table th, .item-table td { padding:1rem; border:1px solid rgba(255,255,255,.15); text-align:left; vertical-align:middle; }
.item-table th { background-color:rgba(255,255,255,.05); font-weight:700; }
.admin-thumb { max-width:100px; height:75px; object-fit:cover; border-radius:8px; border:1px solid rgba(255,255,255,.1); }
.purchased-row { background-color:rgba(0,0,0,.3); color:var(--muted); }
.purchased-row a { color:var(--muted); text-decoration:line-through; }

/* =========================================
   9. GALLERY & EXTRAS
   ========================================= */
/* Masonry Gallery */
.gallery-masonry { column-count: 1; column-gap: 16px; }
@media (min-width: 600px) { .gallery-masonry { column-count: 2; } }
@media (min-width: 900px) { .gallery-masonry { column-count: 3; } }
.gallery-item { break-inside: avoid; margin-bottom: 16px; }
.gallery-item img {
  width: 100%; border-radius: 12px; display: block; cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease; border: 1px solid rgba(255,255,255,0.1); background: #000;
}
.gallery-item img:hover { transform: scale(1.02); filter: brightness(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

/* Dialogs */
dialog {
  background: #1e1e24; color: var(--ink); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 16px;
  padding: 0; max-width: 500px; width: 90%; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
dialog::backdrop { background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); }
.dlghdr {
  padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex;
  justify-content: space-between; align-items: center; background: rgba(0, 0, 0, 0.2);
}
.dlghdr h2 { margin: 0; font-size: 20px; color: #fff; }
.dlgbody { padding: 20px; line-height: 1.6; font-size: 15px; }
.dlgfoot {
  padding: 12px 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); text-align: right; background: rgba(0, 0, 0, 0.2);
}
.closebtn {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--muted);
  padding: 6px 12px; border-radius: 8px; cursor: pointer; font-size: 13px;
}
.closebtn:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* Lightbox */
#lightbox-overlay {
  display: none; position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9); justify-content: center; align-items: center; cursor: pointer; backdrop-filter: blur(5px);
}
#lightbox-image {
  max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.5); animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Footer */
footer { text-align:center; padding:16px 0 28px; }

/* Animations */
.pulse-money {
  color: var(--ok); font-weight: 700; animation: pulse-green 2s infinite; display: inline-block;
}
@keyframes pulse-green {
  0% { transform: scale(1); text-shadow: 0 0 0 rgba(22,163,74, 0); }
  50% { transform: scale(1.1); text-shadow: 0 0 10px rgba(22,163,74, 0.4); }
  100% { transform: scale(1); text-shadow: 0 0 0 rgba(22,163,74, 0); }
}

/* ========== MOBILE HEADER OPTIMIZATIONS ========== */
@media (max-width: 1024px) {
  /* 1. Stack the layout vertically */
  .topnav .inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

  /* 2. Center the buttons and make them fill space evenly */
  .navlinks {
    justify-content: center;
    width: 100%;
    gap: 8px; /* Tighter gap */
  }

  /* 3. Make buttons slightly more compact on mobile */
  .navlinks a {
    font-size: 14px;
    padding: 6px 10px;
    flex-grow: 1; /* Makes buttons expand to fill the row evenly */
    text-align: center;
  }
  
  /* 4. Optional: Un-stick the header on mobile if it gets too tall
     (Remove this block if you want it to stay sticky) */
  .topnav {
    position: relative; 
  }

/* =========================================
   10. ADMIN STATS (Added)
   ========================================= */

/* The Stats Grid (Top cards) */
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 16px; 
  margin-bottom: 24px;
}

.stat-card { 
  background: rgba(255,255,255,0.03); /* Subtle contrast against main card */
  border: 1px solid rgba(255,255,255,0.08); 
  padding: 20px; 
  border-radius: 16px; 
  text-align: center; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card h3 {
  color: var(--muted);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.big-num { 
  font-size: 3em; 
  font-weight: 700; 
  color: var(--ok); /* Uses your green success color */
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.meal-breakdown { 
  display: flex; 
  flex-direction: column; 
  gap: 6px; 
  font-size: 1.1em;
  color: var(--ink);
}

.meal-breakdown strong { color: var(--gold); }

/* The Tabs */
.tabs { 
  display: flex; 
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1); 
  margin-bottom: 16px; 
  flex-wrap: wrap;
}

.tab-btn { 
  background: transparent; 
  border: none; 
  padding: 10px 16px; 
  cursor: pointer; 
  font-weight: 700; 
  color: var(--muted); 
  border-bottom: 2px solid transparent; 
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.tab-btn:hover { 
  color: #fff; 
  background: rgba(255,255,255,0.05);
  border-radius: 8px 8px 0 0;
}

.tab-btn.active { 
  color: var(--gold); 
  border-bottom-color: var(--gold); 
}

/* The Lists */
.guest-list-stats { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  max-height: 300px; 
  overflow-y: auto; 
  background: rgba(0,0,0,0.2); /* Darker background for list area */
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.guest-list-stats li { 
  padding: 10px 16px; 
  border-bottom: 1px solid rgba(255,255,255,0.06); 
  color: var(--ink);
  font-size: 0.95rem;
}

.guest-list-stats li:last-child { border-bottom: none; }
.guest-list-stats li:nth-child(even) { background: rgba(255,255,255,0.02); }

/* Custom Scrollbar for the list */
.guest-list-stats::-webkit-scrollbar { width: 8px; }
.guest-list-stats::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 12px;}
.guest-list-stats::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* =========================================
   11. DASHBOARD & CLEAN ADMIN (NEW)
   ========================================= */

/* --- Stats Dashboard Widgets --- */
.stats-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-widget {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.widget-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.widget-icon.purple { background: rgba(168, 85, 247, 0.2); color: #a855f7; }

.widget-data h3 { margin: 0; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.widget-data .value { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.1; font-family: 'Cormorant Garamond', serif; }

/* --- Clean Admin List --- */
/* The container for a single guest row */
.guest-row-clean {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto; /* Name, Role, Controls, Actions */
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.guest-row-clean:hover { background: rgba(255,255,255,0.03); }
.guest-row-clean:last-child { border-bottom: none; }

/* Mobile fallback for grid */
@media (max-width: 900px) {
  .guest-row-clean { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
}

/* Compact Inputs (Invisible until focused) */
.clean-input {
  background: transparent !important;
  border: 1px solid transparent !important;
  padding: 6px 8px !important;
  font-size: 15px !important;
  color: #fff !important;
  transition: all 0.2s;
}
.clean-input:hover { border-color: rgba(255,255,255,0.1) !important; background: rgba(255,255,255,0.02) !important; }
.clean-input:focus { border-color: var(--gold) !important; background: #0b1220 !important; }

/* Control Group (Checkboxes/Selects) */
.control-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-select {
  padding: 4px 8px !important;
  font-size: 13px !important;
  width: auto !important;
  background: #111 !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* Icon Buttons */
.icon-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.icon-btn.save { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.icon-btn.save:hover { background: #10b981; color: #fff; }

.icon-btn.trash { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.icon-btn.trash:hover { background: #ef4444; color: #fff; }

/* Status Dot */
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px;
}
.status-dot.ok { background: #10b981; box-shadow: 0 0 8px #10b981; }
.status-dot.no { background: #ef4444; }
.status-dot.na { background: #6b7280; }

}