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

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface2: #1a1a28;
  --border: #2a2a40;
  --accent: #6c63ff;
  --accent-light: rgba(108, 99, 255, 0.15);
  --accent2: #ff6584;
  --green: #00d68f;
  --yellow: #ffb400;
  --red: #ff4757;
  --text: #e8e8f0;
  --muted: #6b6b8a;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --sidebar-w: 240px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}

/* ── SIDEBAR ─────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  border: none;
  background: rgba(7, 7, 12, 0.72);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.sidebar-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sidebar-toggle:hover {
  border-color: var(--accent);
  background: rgba(108, 99, 255, 0.08);
}

.sidebar-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.sidebar-open .sidebar-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.sidebar-open .sidebar-toggle span:nth-child(2) {
  opacity: 0;
}

body.sidebar-open .sidebar-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo h1 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.sidebar-logo h1 span { color: var(--accent); }
.sidebar-logo small { color: var(--muted); font-size: 11px; }

.nav-section {
  padding: 16px 12px 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 1px 8px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
}
.nav-item:hover { 
  background: var(--surface2); 
  color: var(--text); 
  transform: translateX(4px);
}
.nav-item.active { 
  background: var(--accent-light); 
  color: var(--accent); 
  border-left: 3px solid var(--accent);
}
.nav-item .icon { font-size: 16px; width: 20px; text-align: center; }

.nav-item .badge {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 700;
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--border);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; font-family: var(--font-head);
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}
.user-info small { display: block; color: var(--muted); font-size: 11px; }
.user-info span { font-size: 13px; font-weight: 500; }

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

.topbar {
  background: rgba(18, 18, 26, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar h2 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
}
.breadcrumb { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.content { padding: 28px; animation: fadeIn 0.4s ease-out; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── CARDS ───────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.stat-card:hover { 
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-clr, var(--accent));
}
.stat-card.green { --accent-clr: var(--green); }
.stat-card.yellow { --accent-clr: var(--yellow); }
.stat-card.red { --accent-clr: var(--red); }

.stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.stat-change {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

/* ── TABLE ───────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.card-header h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
}
.card-header p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(42,42,64,0.5);
  font-size: 13px;
  transition: background 0.1s;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

.thumb {
  width: 48px; height: 32px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--surface2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── BADGES ──────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.badge-green { background: rgba(0,214,143,0.12); color: var(--green); border: 1px solid rgba(0,214,143,0.2); }
.badge-red   { background: rgba(255,71,87,0.12);  color: var(--red); border: 1px solid rgba(255,71,87,0.2); }
.badge-blue  { background: rgba(108,99,255,0.12); color: var(--accent); border: 1px solid rgba(108,99,255,0.2); }
.badge-yellow{ background: rgba(255,180,0,0.12);  color: var(--yellow); border: 1px solid rgba(255,180,0,0.2); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3); }
.btn-primary:hover { background: #5a52e0; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-sm { padding: 5px 12px; font-size: 12px; border-radius: 6px; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--text); background: rgba(255, 255, 255, 0.05); }
.btn-danger { background: rgba(255,71,87,0.1); color: var(--red); border: 1px solid rgba(255,71,87,0.2); }
.btn-danger:hover { background: var(--red); color: #fff; }

/* ── SEARCH / INPUT ──────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  width: 280px;
  transition: all 0.2s;
}
.search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  flex: 1;
}
.search-bar span { color: var(--muted); }

/* ── QUICK ACTIONS ───────────────────────── */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.qa-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}
.qa-item:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
}
.qa-item .qa-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.qa-item span { font-size: 12px; font-weight: 600; color: var(--muted); }

/* ── ACTIVITY ────────────────────────────── */
.activity-list { padding: 10px 0; }
.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(42,42,64,0.4);
  transition: all 0.2s;
}
.activity-item:hover { background: rgba(255,255,255,0.01); }
.activity-item:last-child { border-bottom: none; }
.activity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent);
}
.activity-dot.green { background: var(--green); box-shadow: 0 0 10px var(--green); }
.activity-dot.yellow { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }
.activity-text { font-size: 13px; line-height: 1.5; color: var(--text); }
.activity-text strong { font-weight: 600; color: #fff; }
.activity-time { margin-left: auto; color: var(--muted); font-size: 11px; white-space: nowrap; }

/* ── GRID ────────────────────────────────── */
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }

/* ── LIVE INDICATOR ──────────────────────── */
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  background: rgba(255, 71, 87, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
}
.live-dot::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.8); }
}

/* ── ACTIONS CELL ───────────────────────── */
.actions-cell {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ── MODALS ───────────────────── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 90%;
  max-width: 480px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  position: relative;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header { margin-bottom: 24px; }
.modal-header h2 { font-family: var(--font-head); font-size: 22px; margin-bottom: 4px; }
.modal-header p { color: var(--muted); font-size: 13px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; }
.form-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.2s;
}
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }

.modal-actions { display: flex; gap: 12px; margin-top: 28px; justify-content: flex-end; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
}

/* ── VIDEO PLAYER ───────────────── */
.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.player-info {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.player-info h3 { font-size: 16px; font-family: var(--font-head); }
.player-info span { font-size: 12px; color: var(--green); font-weight: 600; }

/* ── NOTIFICATIONS ─────────────── */
.notification-container {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.notification {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 14px 20px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: all;
}
.notification.success { border-left-color: var(--green); }
.notification.error { border-left-color: var(--red); }
.notification.warning { border-left-color: var(--yellow); }

.notification-content strong { display: block; font-size: 13px; }
.notification-content span { font-size: 12px; color: var(--muted); }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeOutDown {
  to { opacity: 0; transform: translateY(10px); }
}
.notification.leaving { animation: fadeOutDown 0.3s forwards; }

.content-controls,
.categories-summary {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.01);
}

.control-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.control-stat {
  min-width: 120px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface2);
}

.control-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  margin-bottom: 3px;
}

.control-stat span {
  color: var(--muted);
  font-size: 12px;
}

.control-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.control-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 260px;
}

.control-field span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.control-field select {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
}

.control-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.pager {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pager span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.empty-state {
  padding: 24px 0;
  color: var(--muted);
  text-align: center;
}

.link-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 320px;
}

.link-panel span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.link-copy-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.link-input {
  flex: 1;
  min-width: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
}

.category-toolbar {
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.status-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  text-transform: none;
}

.checkbox-group input {
  accent-color: var(--accent);
}

.settings-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px;
  background: var(--surface2);
  border-radius: 12px;
  margin-bottom: 12px;
}

.settings-actions {
  padding: 0 20px 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  body.sidebar-open {
    overflow: hidden;
  }

  .sidebar {
    width: min(84vw, 320px);
    transform: translateX(-100%);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-toggle {
    display: inline-flex;
  }

  .sidebar-overlay {
    display: block;
  }

  body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .main {
    margin-left: 0;
    width: 100%;
  }

  .topbar {
    min-height: 64px;
    height: auto;
    padding: 14px 16px;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .topbar > h2,
  .topbar > .breadcrumb {
    flex: 1;
    min-width: 0;
  }

  .topbar h2 {
    font-size: 16px;
    line-height: 1.4;
  }

  .topbar-actions {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
    gap: 10px;
  }

  .topbar-actions > * {
    flex: 1 1 180px;
  }

  .topbar-actions .live-dot {
    flex: 0 0 auto;
  }

  .content {
    padding: 16px;
  }

  .stats-grid,
  .quick-actions,
  .two-col {
    grid-template-columns: 1fr;
  }

  .search-bar {
    width: 100%;
  }

  .card-header {
    padding: 16px;
  }

  .card-header > * {
    width: 100%;
  }

  .card-header h2,
  .card-header h3 {
    line-height: 1.4;
  }

  .table-responsive {
    margin: 0 -2px;
  }

  table {
    min-width: 520px;
  }

  .activity-item {
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  .activity-time {
    margin-left: 20px;
  }

  .modal-content {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .modal-actions {
    flex-wrap: wrap;
  }

  .modal-actions .btn {
    flex: 1 1 140px;
    justify-content: center;
  }

  .player-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .notification-container {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .notification {
    min-width: 0;
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .settings-actions {
    padding: 0 16px 16px;
  }

  .settings-toggle-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-controls,
  .categories-summary {
    padding: 16px;
  }

  .control-actions,
  .control-stats,
  .pager {
    width: 100%;
  }

  .control-field {
    width: 100%;
    min-width: 0;
  }

  .link-panel {
    min-width: 0;
    width: 100%;
  }

  .link-copy-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .btn,
  .btn-sm {
    width: 100%;
    justify-content: center;
  }

  .topbar-actions > .live-dot {
    width: auto;
  }

  .control-stat {
    width: 100%;
  }
}
