:root {
  --red: #ef4444;
  --red-dark: #dc2626;
  --red-glow: rgba(239, 68, 68, 0.35);
  --bg: #0f172a;
  --surface: #1e293b;
  --surface-light: #273449;
  --border: rgba(239, 68, 68, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --ok: #4ade80;
  --warn: #facc15;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

#sidebar::-webkit-scrollbar {
  display: none;
}

#sidebar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
}

.page-wrap {
  position: relative;
  z-index: 2;
}

.logo-badge {
  width: 51px;
  height: 51px;
  border-radius: 12px;
  background: #080b13;
  border: 1px solid rgba(239, 68, 68, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.brand-title {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  min-width: 0;
}

.card-glow:hover {
  border-color: var(--border);
  box-shadow: 0 0 26px rgba(239, 68, 68, 0.1);
}

.dashboard-sidecards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.discord-role-card {
  grid-column: span 2;
}

.sid-management-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 100%;
}

.btn-discord {
  border: 0;
  border-radius: 8px;
  background: #5865f2;
  color: #ffffff;
  padding: 11px 14px;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

.btn-discord:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-discord:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.red-line {
  height: 2px;
  width: 74px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.inp,
select,
textarea {
  width: 100%;
  background: #0d172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.inp:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.inp::placeholder {
  color: var(--muted);
}

.btn-shimmer,
.btn-ghost {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  min-height: 42px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-neon-blue {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(56, 189, 248, 0.7);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  color: #e0f2fe;
  background: linear-gradient(135deg, #0c4a6e, #0284c7);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45), inset 0 0 8px rgba(186, 230, 253, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-neon-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.75), inset 0 0 10px rgba(186, 230, 253, 0.22);
}

.btn-neon-blue:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-neon-green {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(74, 222, 128, 0.7);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  color: #dcfce7;
  background: linear-gradient(135deg, #166534, #15803d);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.45), inset 0 0 8px rgba(187, 247, 208, 0.12);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn-neon-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.75), inset 0 0 10px rgba(187, 247, 208, 0.22);
}

.btn-neon-green:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-interactive-red {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(239, 68, 68, 0.55);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  color: #fecaca;
  background: rgba(15, 23, 42, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  font-family: inherit;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-interactive-red:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border-color: rgba(239, 68, 68, 0.95);
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.35);
}

.btn-interactive-red:active {
  transform: scale(0.97);
}

.btn-interactive-red:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-shimmer {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 18px var(--red-glow);
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: left 0.45s;
}

.btn-shimmer:hover::after {
  left: 100%;
}

.btn-shimmer:hover {
  transform: translateY(-2px);
}

.btn-solid-grey {
  background: #4b5563;
  color: #f3f4f6;
  box-shadow: none;
}

.btn-solid-grey::after {
  display: none;
}

.btn-solid-grey:hover {
  transform: none;
}

.btn-shimmer:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: var(--red);
}

.btn-ghost.active {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.38);
  color: #fecaca;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-active {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-locked {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-paused {
  background: rgba(250, 204, 21, 0.12);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.25);
}

.hex-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  user-select: none;
}

.hex-checkbox input[type="checkbox"] {
  display: none;
}

.hex-checkbox .custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid rgba(239, 68, 68, 0.45);
  background: rgba(18, 18, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
}

.hex-checkbox .custom-checkbox::after {
  content: "";
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0) translate(-1px, -1px);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}

.hex-checkbox:hover {
  color: var(--text);
}

.hex-checkbox:hover .custom-checkbox {
  border-color: var(--red);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.hex-checkbox input[type="checkbox"]:focus-visible ~ .custom-checkbox {
  outline: 2px solid rgba(239, 68, 68, 0.7);
  outline-offset: 3px;
}

.hex-checkbox input[type="checkbox"]:checked ~ .custom-checkbox {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hex-checkbox input[type="checkbox"]:checked ~ .custom-checkbox::after {
  transform: rotate(45deg) scale(1) translate(-1px, -1px);
  opacity: 1;
}

.hex-checkbox input[type="checkbox"]:active ~ .custom-checkbox {
  transform: scale(0.94);
}

.hex-checkbox:hover .hex-checkbox-label {
  color: #fff;
}

.hex-checkbox-icon {
  width: 28px;
  height: 28px;
  justify-content: center;
  gap: 0;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 460px;
  padding: 34px;
}

.login-halo {
  position: fixed;
  width: 640px;
  height: 640px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.login-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.google-host {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.google-fallback {
  text-align: center;
  color: #fca5a5;
  font-size: 0.85rem;
  display: none;
}

#app-layout {
  display: flex;
  min-height: 100vh;
}

#sidebar {
  width: 252px;
  max-width: min(252px, 86vw);
  background: var(--surface);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  transition: transform 0.25s ease;
  overflow-x: hidden;
}

#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 40;
}

#main {
  margin-left: 252px;
  width: calc(100% - 252px);
}

.nav-item {
  margin: 3px 8px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s;
}

.nav-item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-item.active {
  color: var(--red);
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.24);
}

.nav-item.logout {
  color: #f87171;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(15, 23, 42, 0.88);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 22px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-inner {
  padding: 26px;
  max-width: 1080px;
  width: 100%;
}

.section-panel {
  display: none;
}

.section-panel.active {
  display: block;
}

.grid-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

@media (min-width: 1060px) {
  .grid-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-card {
  padding: 18px;
  background: linear-gradient(135deg, var(--surface), var(--surface-light));
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.quick-item {
  padding: 16px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--surface);
}

.quick-item:hover {
  border-color: var(--border);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  gap: 14px;
  max-width: 1080px;
  width: 100%;
}

.download-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 18px;
}

.guide-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  display: grid;
  place-items: center;
  color: var(--red);
  margin-bottom: 12px;
}

.guide-card h3 {
  margin: 0 0 8px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.22rem;
}

.guide-card p,
.guide-list {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.65;
}

.guide-list {
  padding-left: 18px;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn-discord-guide,
.guide-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}

.btn-discord-guide {
  background: #5865f2;
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.43fr;
  gap: 18px;
}

.sid-box {
  background: #0d172a;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  padding: 14px;
  font-family: "DM Mono", monospace;
  color: #fca5a5;
  font-size: 0.9rem;
  word-break: break-word;
}

.code-help {
  background: #101a2f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  font-family: "DM Mono", monospace;
  color: #e2e8f0;
  font-size: 0.82rem;
  word-break: break-all;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-shell {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.admin-header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.admin-form-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-action-btn {
  flex: 1 1 148px;
  color: #fecaca !important;
  background: rgba(15, 23, 42, 0.7) !important;
  border-color: rgba(239, 68, 68, 0.55) !important;
  box-shadow: none;
}

.admin-action-btn:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.admin-key-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: min(480px, 100%);
}

.admin-key-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 300px;
  min-width: min(300px, 100%);
}

.small-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 0.75rem;
  cursor: pointer;
}

.small-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.action-select {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
}

.action-select:focus {
  border-color: var(--red);
  outline: none;
}

.action-select option {
  background: var(--surface);
  color: var(--text);
}

.action-set-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 0.75rem;
  cursor: pointer;
}

.action-set-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(239, 68, 68, 0.1);
}

.toast-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
  border: 1px solid;
  max-width: 300px;
}

.toast.ok {
  color: #86efac;
  background: #14532d;
  border-color: #4ade80;
}

.toast.err {
  color: #fecaca;
  background: #450a0a;
  border-color: #f87171;
}

.toast.info {
  color: #93c5fd;
  background: #1e3a5f;
  border-color: #60a5fa;
}

.scan-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(4px);
}

.scan-popup-card {
  width: min(430px, calc(100vw - 30px));
  border-radius: 14px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  background: linear-gradient(170deg, rgba(4, 28, 18, 0.96), rgba(8, 48, 28, 0.92));
  box-shadow: 0 0 32px rgba(74, 222, 128, 0.25);
  padding: 20px 18px;
  text-align: center;
  animation: scanPopIn 0.28s ease-out;
}

.scan-check {
  font-size: 2.6rem;
  color: #4ade80;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.55);
  animation: tickPulse 1s ease-in-out infinite;
}

.scan-popup-title {
  margin-top: 8px;
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #bbf7d0;
}

.scan-popup-text {
  margin-top: 6px;
  font-size: 0.92rem;
  color: #dcfce7;
  line-height: 1.5;
}

@keyframes tickPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes scanPopIn {
  0% { opacity: 0; transform: translateY(14px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  #sidebar {
    width: min(280px, 86vw);
    max-width: 86vw;
    transform: translateX(-100%);
  }

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

  #sidebar-overlay.open {
    display: block;
  }

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

  .main-inner {
    padding: 18px;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .sid-management-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-sidecards {
    grid-template-columns: 1fr;
  }

  .discord-role-card {
    grid-column: 1 / -1;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-show {
    display: inline-flex !important;
  }
}

@media (min-width: 901px) {
  #sidebar {
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .topbar {
    height: 58px;
    padding: 0 14px;
  }

  .main-inner {
    padding: 14px;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-actions a {
    width: 100%;
  }

  .download-meta-grid {
    grid-template-columns: 1fr;
  }

  .section-panel .btn-shimmer,
  .section-panel .btn-ghost,
  .section-panel .btn-neon-blue {
    width: 100%;
    padding: 12px 14px;
  }

  .admin-shell {
    padding: 14px;
  }

  .admin-header {
    align-items: flex-start;
  }

  .admin-header-actions,
  .admin-header-actions .btn-interactive-red,
  .admin-header-actions .btn-shimmer {
    width: 100%;
  }

  .admin-form-grid,
  .admin-form-grid-three {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-action-btn {
    width: 100%;
  }

  .admin-key-tools,
  .admin-key-filters,
  .admin-key-filters select {
    width: 100% !important;
  }
}

.mobile-show {
  display: none;
}
