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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d1018;
  color: #f2f4f8;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

/* Left Toolbar */
.toolbar {
  width: 56px;
  min-width: 56px;
  background: #1a1e2a;
  border-right: 1px solid #2a3040;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100vh;
}

/* Hide scrollbar but keep functionality */
.toolbar::-webkit-scrollbar {
  width: 4px;
}

.toolbar::-webkit-scrollbar-track {
  background: transparent;
}

.toolbar::-webkit-scrollbar-thumb {
  background: #2a3040;
  border-radius: 2px;
}

.toolbar::-webkit-scrollbar-thumb:hover {
  background: #3b82f6;
}

.tool-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #8892a8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.tool-btn svg {
  width: 20px;
  height: 20px;
}

.tool-btn .tower-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tool-btn .monster-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tool-btn.tower-toggle:not(.active) {
  opacity: 0.5;
}

.tool-btn.monster-toggle:not(.active) {
  opacity: 0.5;
}

.tool-btn:hover {
  background: #262d3d;
  color: #c8d0e0;
}

.tool-btn.active {
  background: #3b82f6;
  color: #ffffff;
}

/* Color Indicator on Draw Button */
.color-indicator {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  display: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tool-btn.active .color-indicator {
  display: block;
}

/* Draw Button Wrapper & Color Picker */
.draw-btn-wrapper {
  position: relative;
}

#drawBtn {
  position: relative;
}

.color-picker {
  position: fixed;
  background: #1a1f2e;
  border-radius: 8px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a3040;
  z-index: 1000;
}

.color-picker.visible {
  display: flex;
}

.draw-mode-toggle {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.draw-mode-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1.5px solid #2a3040;
  background: transparent;
  color: #8892a8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.draw-mode-btn:hover {
  background: #2a3040;
  color: #c5cee0;
}

.draw-btn-icon {
  display: none;
}

.draw-btn-icon.active {
  display: block;
}

.draw-mode-btn.active {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.picker-divider {
  width: 100%;
  height: 1px;
  background: #2a3040;
}

.color-option {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.color-option:hover {
  transform: scale(1.15);
}

.color-option.selected {
  border-color: #ffffff;
}

.color-option[data-color="#ef4444"] {
  background: #ef4444;
}

.color-option[data-color="#f97316"] {
  background: #f97316;
}

.color-option[data-color="#3b82f6"] {
  background: #3b82f6;
}

.color-option[data-color="#ffffff"] {
  background: #ffffff;
}

.color-option[data-color="#eab308"] {
  background: #eab308;
}

.divider {
  width: 32px;
  height: 1px;
  background: #2a3040;
  margin: 6px 0;
}

/* Size Control */
.size-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.size-label {
  font-size: 10px;
  color: #8892a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background: transparent;
  cursor: pointer;
  writing-mode: vertical-lr;
  direction: rtl;
}

.size-slider::-webkit-slider-runnable-track {
  width: 4px;
  height: 100%;
  background: #2a3040;
  border-radius: 2px;
}

.size-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  margin-left: -4px;
}

.size-slider::-moz-range-track {
  width: 4px;
  height: 100%;
  background: #2a3040;
  border-radius: 2px;
}

.size-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  border: none;
}

.size-value {
  font-size: 11px;
  color: #c8d0e0;
  font-weight: 600;
}

/* Champion Markers */
.marker-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e2433;
  border: 3px solid;
  cursor: grab;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.marker:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.marker:active {
  cursor: grabbing;
}

.marker.blue {
  border-color: #3b82f6;
}

.marker.red {
  border-color: #ef4444;
}

/* Minion Markers */
.minion-btn-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minion-picker {
  position: fixed;
  background: #1a1f2e;
  border-radius: 8px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a3040;
  z-index: 1000;
}

.minion-picker.visible {
  display: flex;
}

.minion-option {
  cursor: pointer;
  padding: 3px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.minion-option:hover {
  background: #2a3040;
}

.minion-option.selected {
  border-color: #ffffff;
}

.minion-preview {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  border: 2px solid;
}

.minion-preview.blue-minion {
  background-image: url('image/BlueWaveMinion.png');
  border-color: #3b82f6;
}

.minion-preview.red-minion {
  background-image: url('image/RedWaveMinion.png');
  border-color: #ef4444;
}

.minion {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: grab;
  background-size: cover;
  background-position: center;
  border: 2px solid;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.minion:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.minion:active {
  cursor: grabbing;
}

.minion.blue-minion {
  background-image: url('image/BlueWaveMinion.png');
  border-color: #3b82f6;
}

.minion.red-minion {
  background-image: url('image/RedWaveMinion.png');
  border-color: #ef4444;
}

/* Ward Markers */
.ward-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.ward {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  border: 2px solid;
}

.ward svg {
  width: 16px;
  height: 16px;
}

.ward:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ward:active {
  cursor: grabbing;
}

.ward.green-ward {
  background: rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
  color: #22c55e;
}

.ward.pink-ward {
  background: rgba(236, 72, 153, 0.2);
  border-color: #ec4899;
  color: #ec4899;
}

/* Tower Markers */
.tower-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.tower {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: grab;
  background-image: url('image/Turretico.png');
  background-size: cover;
  background-position: center;
  border: 2px solid #9ca3af;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.tower:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tower:active {
  cursor: grabbing;
}

/* Canvas Area */
.canvas-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  overflow: hidden;
  touch-action: none;
}

canvas {
  display: block;
  touch-action: none;
}

/* Right Panel */
.right-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 48px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: width 0.25s ease;
  z-index: 100;
  pointer-events: none;
}

.right-panel.open {
  width: 30%;
  min-width: 280px;
  background: #1a1e2a;
  border-left: 1px solid #2a3040;
  pointer-events: auto;
}

.hamburger-btn {
  width: 40px;
  height: 40px;
  margin: 8px;
  border: none;
  border-radius: 8px;
  background: #1a1e2a;
  color: #8892a8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  pointer-events: auto;
  flex-shrink: 0;
}

.hamburger-btn svg {
  width: 20px;
  height: 20px;
}

.hamburger-btn:hover {
  background: #262d3d;
  color: #c8d0e0;
}

.right-panel.open .hamburger-btn {
  background: #3b82f6;
  color: #ffffff;
}

.panel-content {
  flex: 1;
  width: 100%;
  padding: 12px;
  overflow-y: auto;
  display: none;
}

.right-panel.open .panel-content {
  display: block;
}

/* Panel Sections */
.panel-section {
  margin-bottom: 16px;
}

.panel-title {
  font-size: 14px;
  font-weight: 600;
  color: #c8d0e0;
  margin-bottom: 4px;
}

.panel-hint {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 12px;
}

/* Draft Select */
.draft-section {
  margin-bottom: 16px;
}

.draft-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 4px;
}

.draft-title.blue-title {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.15);
  border-left: 3px solid #3b82f6;
}

.draft-title.red-title {
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
  border-left: 3px solid #ef4444;
}

.draft-slots {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.draft-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.role-name {
  font-size: 10px;
  font-weight: 600;
  color: #8892a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.role-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e2433;
  border: 2px solid #2a3040;
  cursor: pointer;
  transition: all 0.15s ease;
  background-size: cover;
  background-position: center;
}

.role-icon:hover {
  border-color: #3b82f6;
  transform: scale(1.05);
}

.role-icon.selecting {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.role-icon.has-champion {
  border-width: 2px;
}

.draft-slots[data-team="blue"] .role-icon {
  border-color: rgba(59, 130, 246, 0.4);
}

.draft-slots[data-team="blue"] .role-icon:hover,
.draft-slots[data-team="blue"] .role-icon.selecting {
  border-color: #3b82f6;
}

.draft-slots[data-team="red"] .role-icon {
  border-color: rgba(239, 68, 68, 0.4);
}

.draft-slots[data-team="red"] .role-icon:hover,
.draft-slots[data-team="red"] .role-icon.selecting {
  border-color: #ef4444;
}

.divider-horizontal {
  height: 1px;
  background: #2a3040;
  margin: 16px 0;
}

/* Champion Search */
.champion-search {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #2a3040;
  border-radius: 6px;
  background: #0d1018;
  color: #f2f4f8;
  font-size: 13px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.15s ease;
}

.champion-search:focus {
  border-color: #3b82f6;
}

.champion-search::placeholder {
  color: #6b7280;
}

/* Champion Grid */
.champion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.champion-icon {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: all 0.15s ease;
  opacity: 0.8;
}

.champion-icon:hover {
  border-color: #3b82f6;
  opacity: 1;
  transform: scale(1.05);
}

.champion-icon.selected {
  border-color: #10b981;
  opacity: 1;
}

/* Champion already assigned to another marker */
.champion-icon.taken {
  opacity: 0.35;
  cursor: not-allowed;
  position: relative;
}

.champion-icon.taken::after {
  content: attr(data-assigned-to);
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #f59e0b;
  font-size: 7px;
  font-weight: 600;
  text-align: center;
  padding: 1px 2px;
  border-radius: 0 0 4px 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.champion-icon.taken:hover {
  border-color: #ef4444;
  transform: none;
  opacity: 0.35;
}

/* Toolbar Marker with Champion */
.marker.has-champion {
  background-size: cover;
  background-position: center;
  border-width: 2px;
}

.marker.selecting {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.3); }
}

/* Shortcuts Hint */
.shortcuts-hint {
  position: fixed;
  bottom: 20px;
  left: 76px;
  background: rgba(26, 30, 42, 0.95);
  border: 1px solid #2a3040;
  border-radius: 8px;
  padding: 12px 16px;
  z-index: 200;
  opacity: 1;
  transition: opacity 0.5s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.shortcuts-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.shortcuts-title {
  font-size: 11px;
  font-weight: 600;
  color: #8892a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2a3040;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #c8d0e0;
  margin: 4px 0;
}

.shortcut-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #262d3d;
  border: 1px solid #3b82f6;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #3b82f6;
}

.shortcut-key.mouse-icon,
.shortcut-key.scroll-icon {
  font-size: 14px;
  border-color: #8892a8;
  color: #8892a8;
}

/* Responsive - Small screens */
@media (max-width: 768px) {
  .toolbar {
    width: 48px;
    min-width: 48px;
    padding: 8px 0;
    gap: 6px;
  }
  
  .tool-btn {
    width: 34px;
    height: 34px;
  }
  
  .tool-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .marker {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  
  .minion {
    width: 22px;
    height: 22px;
  }
  
  .ward {
    width: 22px;
    height: 22px;
  }
  
  .ward svg {
    width: 12px;
    height: 12px;
  }
  
  .size-slider {
    height: 32px;
  }
  
  .size-label,
  .size-value {
    font-size: 9px;
  }
  
  .divider {
    width: 24px;
    margin: 4px 0;
  }
  
  .right-panel.open {
    width: 80%;
    min-width: 200px;
  }
  
  .shortcuts-hint {
    left: 58px;
    bottom: 10px;
    padding: 8px 12px;
  }
  
  .shortcuts-title {
    font-size: 10px;
  }
  
  .shortcut-item {
    font-size: 11px;
  }
  
  .shortcut-key {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

/* Responsive - Extra small screens */
@media (max-width: 480px) {
  .toolbar {
    width: 42px;
    min-width: 42px;
    padding: 6px 0;
    gap: 4px;
  }
  
  .tool-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }
  
  .tool-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .marker {
    width: 18px;
    height: 18px;
  }
  
  .minion,
  .ward {
    width: 18px;
    height: 18px;
  }
  
  .right-panel.open {
    width: 100%;
  }
  
  .shortcuts-hint {
    left: 50px;
    font-size: 10px;
  }
}

/* Responsive - Height-based adjustments */
@media (max-height: 600px) {
  .toolbar {
    padding: 6px 0;
    gap: 4px;
  }
  
  .marker-group {
    gap: 4px;
  }
  
  .minion-btn-wrapper,
  .ward-group {
    gap: 4px;
  }
  
  .divider {
    margin: 2px 0;
  }
  
  .size-control {
    padding: 2px 0;
  }
}

/* ─────────────────────────────────────────────────────────────
   Collaboration UI
   ───────────────────────────────────────────────────────────── */

.collab-panel {
  position: fixed;
  top: 12px;
  left: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #1a1e2a;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid #2a3040;
}

.connection-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280;
  transition: background 0.3s ease;
}

.connection-status.online .status-dot {
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.connection-status.offline .status-dot {
  background: #6b7280;
}

.connection-status.connecting .status-dot {
  background: #f59e0b;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-btn svg {
  width: 16px;
  height: 16px;
}

.share-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.users-online {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #1a1e2a;
  border-radius: 20px;
  font-size: 12px;
  color: #22c55e;
  border: 1px solid #2a3040;
}

/* Share Modal */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.share-modal-content {
  background: #1a1e2a;
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 480px;
  border: 1px solid #2a3040;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.share-modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f2f4f8;
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: #8892a8;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
}

.close-modal-btn:hover {
  background: #262d3d;
  color: #f2f4f8;
}

.share-modal-body p {
  color: #8892a8;
  font-size: 14px;
  margin-bottom: 16px;
}

.share-link-container {
  display: flex;
  gap: 8px;
}

.share-link-input {
  flex: 1;
  padding: 12px 16px;
  background: #0d1018;
  border: 1px solid #2a3040;
  border-radius: 8px;
  color: #f2f4f8;
  font-size: 13px;
  font-family: monospace;
}

.share-link-input:focus {
  outline: none;
  border-color: #3b82f6;
}

.copy-link-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: #3b82f6;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.copy-link-btn:hover {
  background: #2563eb;
}

.copy-success {
  margin-top: 12px;
  padding: 10px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #22c55e;
  font-size: 13px;
  text-align: center;
}

.share-modal-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #2a3040;
}

.new-room-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #3b82f6;
  border-radius: 8px;
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.new-room-btn:hover {
  background: rgba(59, 130, 246, 0.1);
}

/* Mobile adjustments for collaboration UI */
@media (max-width: 640px) {
  .collab-panel {
    left: 60px;
    gap: 8px;
  }
  
  .share-btn span {
    display: none;
  }
  
  .share-btn {
    padding: 8px;
    border-radius: 50%;
  }
  
  .connection-status .status-text {
    display: none;
  }
  
  .connection-status {
    padding: 6px;
    border-radius: 50%;
  }
  
  .share-modal-content {
    margin: 16px;
  }
}
