/* =========================================================================
   reDroid "Estilo Negro" — Pure Black Ultra-Low-Latency UI
   ========================================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
}

html, body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  background-color: #000000;
  color: #f4f4f5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

/* =========================================================================
   Obsidian Authentication Gate Overlay ("Estilo Negro")
   ========================================================================= */

.auth-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 16px;
  touch-action: auto;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.auth-overlay.auth-fade-out {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  background: rgba(14, 14, 16, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 1px rgba(255, 255, 255, 0.2);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}

.auth-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.auth-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.4;
  margin-bottom: 24px;
}

.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-input-group {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.auth-input {
  width: 100%;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 42px 12px 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  user-select: text;
  -webkit-user-select: text;
}

.auth-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background: #202024;
}

.btn-eye {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #71717a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.15s ease;
}

.btn-eye:hover {
  color: #ffffff;
}

.auth-error {
  font-size: 12px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: left;
  line-height: 1.3;
}

.btn-auth {
  width: 100%;
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.btn-auth:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-auth:active {
  transform: scale(0.98);
}

.auth-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.auth-card.shake {
  animation: shake 0.4s ease-in-out;
}

/* App Locked state */
body.app-locked #viewport-container,
body.app-locked #system-bar,
body.app-locked .nav-reveal-pill,
body.app-locked .floating-btn,
body.app-locked .status-badge {
  display: none !important;
}

#viewport-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

/* Video Canvas Preserving Native 720:1280 Resolution */
#remote-video {
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 720 / 1280;
  object-fit: contain;
  background-color: #000000;
  touch-action: none; /* Prevents browser pan, zoom, and swipe gestures */
  cursor: default;
  display: block;
}

/* Horizontal / Landscape Responsive Mode */
#remote-video.landscape,
body.is-landscape #remote-video {
  aspect-ratio: 1280 / 720;
}

body.is-landscape .status-badge {
  top: 10px;
  right: 12px;
  padding: 4px 10px;
  font-size: 11px;
}

body.is-landscape .floating-btn {
  top: 10px;
  left: 12px;
  padding: 5px 10px;
  font-size: 11px;
}

body.is-landscape #system-bar {
  bottom: 12px;
  padding: 6px 14px;
  gap: 12px;
}

@media (orientation: landscape) and (max-height: 500px) {
  #system-bar {
    bottom: 8px;
    padding: 4px 12px;
    gap: 8px;
  }
  .sys-btn {
    width: 36px;
    height: 36px;
  }
  .sys-btn svg {
    width: 18px;
    height: 18px;
  }
}


/* Minimal Top-Right Status Badge */
.status-badge {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(18, 18, 20, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 50;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Status States */
.status-connected .status-dot {
  background-color: #10b981; /* Emerald green */
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.status-connecting .status-dot {
  background-color: #f59e0b; /* Amber */
  animation: pulse 1.5s infinite;
}

.status-disconnected .status-dot,
.status-failed .status-dot {
  background-color: #ef4444; /* Red */
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Floating Obsidian Glassmorphism System Navigation Bar */
#system-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 18px;
  background: rgba(18, 18, 20, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 100;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

#system-bar.bar-hidden {
  transform: translate(-50%, 180%);
  opacity: 0;
  pointer-events: none;
}

/* Discreet Floating Handle to Reveal Hidden Navigation Bar */
.nav-reveal-pill {
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 20px;
  background: rgba(18, 18, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
  padding: 0;
  outline: none;
}

.nav-reveal-pill:hover {
  background: rgba(30, 30, 35, 0.95);
  width: 64px;
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-reveal-pill .pill-indicator {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-reveal-pill:hover .pill-indicator {
  background: #ffffff;
  width: 36px;
}

.nav-reveal-pill.hidden {
  display: none !important;
}

.sys-btn {
  background: transparent;
  border: none;
  outline: none;
  color: #d4d4d8;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  touch-action: manipulation;
}

.sys-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.sys-btn:active {
  transform: scale(0.88);
  background: rgba(255, 255, 255, 0.22);
}

.btn-power:hover {
  color: #f87171;
}

/* =========================================================================
   Floating Quality Settings Button & Obsidian Settings Modal
   ========================================================================= */

.floating-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(18, 18, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #e4e4e7;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.floating-btn:hover {
  background: rgba(28, 28, 32, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

.floating-btn:active {
  transform: scale(0.95);
}

/* Quality Indicator Dots */
.quality-dot-excellent {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.quality-dot-good {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
}

.quality-dot-fair {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.8);
}

.quality-dot-poor {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

/* Settings Modal Container */
.settings-modal {
  position: fixed;
  top: 56px;
  left: 16px;
  width: calc(100vw - 32px);
  max-width: 380px;
  max-height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  background: rgba(14, 14, 16, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 1px rgba(255, 255, 255, 0.2);
  z-index: 120;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.settings-modal.hidden {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
}

.modal-header {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fafafa;
  letter-spacing: -0.01em;
}

.btn-close {
  background: transparent;
  border: none;
  color: #a1a1aa;
  font-size: 20px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Slim Obsidian Scrollbar */
.modal-body::-webkit-scrollbar {
  width: 5px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.35);
}

.modal-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Network Stats Pill */
.network-stats-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 14px;
}

.pill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pill-label {
  font-size: 11px;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.tier-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 9999px;
}

.tier-excellent {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tier-good {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.tier-fair {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.tier-poor {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pill-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  font-size: 11px;
  color: #71717a;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-item small {
  font-size: 9px;
  color: #71717a;
  text-transform: uppercase;
}

.metric-item strong {
  font-size: 12px;
  color: #e4e4e7;
  font-weight: 600;
}

/* Setting Groups */
.setting-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.setting-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setting-title {
  font-size: 12px;
  font-weight: 600;
  color: #fafafa;
}

.setting-sublabel {
  font-size: 11px;
  font-weight: 500;
  color: #a1a1aa;
}

.setting-desc {
  font-size: 11px;
  color: #71717a;
  line-height: 1.4;
}

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.12);
  transition: 0.2s;
  border-radius: 9999px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #10b981;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

/* Preset Grid */
.preset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.preset-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.15s ease;
}

.preset-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.preset-btn.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
}

.preset-name {
  font-size: 12px;
  font-weight: 600;
  color: #f4f4f5;
}

.preset-btn.active .preset-name {
  color: #34d399;
}

.preset-detail {
  font-size: 10px;
  color: #71717a;
}

.preset-btn.active .preset-detail {
  color: #a7f3d0;
}

/* Selects Grid */
.setting-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.control-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.custom-select {
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #f4f4f5;
  padding: 6px 10px;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.custom-select:focus {
  border-color: #10b981;
}

/* Apply Button */
.btn-apply {
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-apply:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.btn-apply:active {
  transform: scale(0.98);
}

/* Sensitivity Range Slider */
.custom-range {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
  margin: 6px 0;
  touch-action: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.custom-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
  cursor: pointer;
  border: none;
}

/* =========================================================================
   Landscape & Responsive Settings Modal Layout
   ========================================================================= */

@media (orientation: landscape) and (min-width: 480px), (min-width: 600px) {
  .settings-modal {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(620px, calc(100vw - 24px));
    max-width: 620px;
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
  }

  .settings-modal.hidden {
    opacity: 0;
    transform: translate(-50%, -10px) scale(0.98);
    pointer-events: none;
  }

  .modal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }

  .modal-col {
    gap: 12px;
  }
}

/* Also handle body.is-landscape when device orientation changes */
@media (min-width: 480px) {
  body.is-landscape .settings-modal {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(620px, calc(100vw - 24px));
    max-width: 620px;
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
  }

  body.is-landscape .settings-modal.hidden {
    opacity: 0;
    transform: translate(-50%, -10px) scale(0.98);
    pointer-events: none;
  }

  body.is-landscape .modal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }

  body.is-landscape .modal-col {
    gap: 12px;
  }
}

/* Ultra-compact mode for smartphones in landscape (viewport height <= 520px) */
@media (max-height: 520px) {
  .settings-modal {
    top: 6px;
    max-height: calc(100dvh - 12px);
    border-radius: 14px;
  }

  .modal-header {
    padding: 8px 14px;
  }

  .modal-body {
    padding: 10px 14px;
    gap: 8px;
  }

  .modal-body .setting-desc {
    display: none;
  }

  .network-stats-pill {
    padding: 6px 10px;
  }

  .pill-row {
    margin-bottom: 4px;
  }

  .pill-label {
    font-size: 10px;
  }

  .tier-badge {
    font-size: 10px;
    padding: 1px 6px;
  }

  .pill-metrics {
    gap: 4px;
  }

  .metric-item small {
    font-size: 8px;
  }

  .metric-item strong {
    font-size: 11px;
  }

  .setting-group {
    gap: 5px;
  }

  .setting-title {
    font-size: 11px;
  }

  .setting-sublabel {
    font-size: 10px;
  }

  .switch {
    width: 32px;
    height: 18px;
  }

  .slider:before {
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
  }

  input:checked + .slider:before {
    transform: translateX(14px);
  }

  .preset-grid {
    gap: 5px;
  }

  .preset-btn {
    padding: 5px 7px;
    gap: 1px;
    border-radius: 8px;
  }

  .preset-name {
    font-size: 11px;
  }

  .preset-detail {
    font-size: 8.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .custom-range {
    margin: 2px 0;
    height: 5px;
  }

  .custom-range::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
  }

  .custom-select {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 6px;
  }

  .btn-apply {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
  }

  .modal-columns {
    gap: 10px;
  }

  .modal-col {
    gap: 8px;
  }
}



