/* =====================================================
   1. Reset & base
===================================================== */
* {
  box-sizing: border-box;
}

:root {
  --app-font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--app-font-family);
  background: #020617;
  color: #e5e7eb;
  overflow: hidden;
}

body.presentation-mode {
  background: #020617;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: #020617;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid #1f2937;
  border-radius: 999px;
  background: #0f172a;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.preloader-mark img {
  width: 42px;
  height: 42px;
  animation: ball-spin 0.85s linear infinite;
}

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

/* =====================================================
   2. Layout
===================================================== */
.app {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  height: calc(100vh - 60px);
}

/* Panels */
.left,
.right {
  background: #0f172a;
  border-right: 1px solid #1f2937;
  padding: 16px;
  overflow-y: auto;
}

.right {
  border-right: none;
  border-left: 1px solid #1f2937;
}

.center {
  position: relative;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: stretch; /* BELANGRIJK */
  height: 100%;
}

.canvas-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

body.presentation-mode .header,
body.presentation-mode .left,
body.presentation-mode .right,
body.presentation-mode .toolbar,
body.presentation-mode .phase-strip,
body.presentation-mode .object-toolbar,
body.presentation-mode .mobile-toolbar,
body.presentation-mode .mobile-objects,
body.presentation-mode .mobile-drawer,
body.presentation-mode .project-library,
body.presentation-mode .exercise-library,
body.presentation-mode .faq-library {
  display: none !important;
}

body.presentation-mode .app {
  grid-template-columns: 1fr;
  height: 100vh;
}

body.presentation-mode .center {
  height: 100vh;
  padding: 0;
}

body.presentation-mode #canvas-container {
  max-width: none;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

/* =====================================================
   3. Header
===================================================== */
.header {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f2937;
}

.header-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 38px;
}

.header-logo img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.header-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-action {
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid #1f2937;
  border-radius: 8px;
  background: #111827;
  color: #e5e7eb;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 0 12px;
  cursor: pointer;
}

.header-action:hover {
  background: #1f2937;
  border-color: #374151;
}

.autosave-status {
  min-width: 92px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1f2937;
  border-radius: 999px;
  padding: 0 10px;
  color: #94a3b8;
  background: #0f172a;
  font-size: 12px;
  font-weight: 600;
}

.toast-stack {
  position: fixed;
  top: 76px;
  right: 18px;
  z-index: 1200;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 24px));
  pointer-events: none;
}

.toast {
  opacity: 0;
  transform: translateY(-6px);
  min-height: 42px;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 11px 13px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-color: #166534;
  color: #bbf7d0;
}

.toast.info {
  border-color: #1d4ed8;
  color: #bfdbfe;
}

.project-library {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: none;
  justify-content: flex-end;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(6px);
}

.project-library.open {
  display: flex;
}

.project-library-panel {
  width: min(440px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  background: #0f172a;
  border-left: 1px solid #1f2937;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
}

.project-library-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-library-panel h2 {
  margin: 0;
  font-size: 18px;
}

.project-library-panel button {
  min-height: 36px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  background: #111827;
  color: #e5e7eb;
  font: inherit;
  cursor: pointer;
}

.project-library-panel button:hover {
  background: #1f2937;
  border-color: #374151;
}

#closeLibraryButton {
  width: 36px;
}

.project-library-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.project-library-list {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.project-card {
  display: grid;
  gap: 10px;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 12px;
  background: #111827;
}

.project-card h3 {
  margin: 0;
  color: #e5e7eb;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

.project-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
}

.project-card-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.project-empty {
  border: 1px dashed #334155;
  border-radius: 10px;
  padding: 18px;
  color: #94a3b8;
  text-align: center;
}

.exercise-library {
  position: fixed;
  inset: 0;
  z-index: 780;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.exercise-library.open {
  display: flex;
}

.faq-library {
  position: fixed;
  inset: 0;
  z-index: 790;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.faq-library.open {
  display: flex;
}

.exercise-library-panel {
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 18px;
  background: #0f172a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.faq-panel {
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 18px;
  background: #0f172a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.exercise-library-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.faq-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.exercise-library-panel h2,
.exercise-library-panel p,
.faq-panel h2,
.faq-panel p {
  margin: 0;
}

.exercise-library-panel h2,
.faq-panel h2 {
  font-size: 20px;
}

.exercise-library-panel > header p,
.faq-panel > header p {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 13px;
}

.exercise-library-panel button,
.faq-panel button {
  border: 1px solid #1f2937;
  border-radius: 8px;
  background: #111827;
  color: #e5e7eb;
  font: inherit;
  cursor: pointer;
}

#closeExerciseLibraryButton,
#closeFaqButton {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.faq-list {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.faq-list details {
  border: 1px solid #1f2937;
  border-radius: 10px;
  background: #111827;
}

.faq-list summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  padding: 0 14px 14px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

.faq-list a {
  color: #93c5fd;
}

.exercise-library-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow-y: auto;
  padding-right: 4px;
}

.exercise-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 14px;
  text-align: left;
  background: #111827;
}

.exercise-card:hover {
  background: #162033;
  border-color: #374151;
}

.exercise-card strong {
  display: block;
  font-size: 15px;
}

.exercise-card span {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.exercise-card p {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.4;
}

.autosave-status.saving {
  color: #fbbf24;
  border-color: #854d0e;
}

.autosave-status.saved {
  color: #86efac;
  border-color: #166534;
}

/* =====================================================
   4. Canvas
===================================================== */
#canvas-container {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 1200px;
  border-radius: 12px;
  overflow: hidden;
  background: #020617;
  border: 1px solid #1f2937;
}

.phase-strip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 160;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 10px;
  padding: 8px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid #1f2937;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.phase-strip-head {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
}

.phase-strip-head strong {
  overflow: hidden;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phase-strip-actions {
  display: grid;
  grid-template-columns: repeat(5, 28px);
  gap: 5px;
}

.phase-strip-actions button {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: #111827;
  color: #e5e7eb;
  cursor: pointer;
}

.phase-strip-actions button:hover {
  background: #1f2937;
}

.phase-strip-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.phase-list {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
}

.phase-card {
  width: 108px;
  flex: 0 0 108px;
  display: grid;
  grid-template-rows: 54px auto;
  gap: 6px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  padding: 6px;
  background: #111827;
  color: #e5e7eb;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.phase-card:hover {
  border-color: #374151;
  background: #1f2937;
}

.phase-card.active {
  border-color: #60a5fa;
  box-shadow: 0 0 0 1px #60a5fa;
}

.phase-thumb {
  width: 100%;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #020617;
}

.phase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-thumb span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.phase-card strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.presentation-exit {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 500;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #1f2937;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.82);
  color: #e5e7eb;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.presentation-exit:hover {
  background: #1f2937;
}

body.presentation-mode .presentation-exit {
  display: inline-flex;
}

/* =====================================================
   5. Floating toolbar (boven canvas)
===================================================== */
.toolbar {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 32px);
  padding: 6px;
  overflow: visible;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid #1f2937;
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.toolbar button,
.toolbar summary,
.object-toolbar button {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #e5e7eb;
  cursor: pointer;
  list-style: none;
}

.toolbar summary::-webkit-details-marker {
  display: none;
}

.toolbar button:hover,
.toolbar summary:hover,
.object-toolbar button:hover {
  background: #1f2937;
}

.toolbar button:disabled,
.object-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.toolbar button.active,
.toolbar .tool-group[open] > summary,
.object-toolbar button.active {
  background: #1d4ed8;
}

.toolbar input[type="color"],
.object-toolbar input[type="color"] {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 0;
  border-radius: 8px;
  padding: 4px;
  background: #111827;
  cursor: pointer;
}

.toolbar input[type="range"],
.object-toolbar input[type="range"] {
  width: 72px;
  accent-color: #60a5fa;
}

.tool-group {
  position: relative;
}

.tool-group-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 8px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid #334155;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(10px);
}

.tool-group-panel.wide {
  min-width: 190px;
}

.tool-group:not([open]) .tool-group-panel {
  display: none;
}

/* =====================================================
   6. Object toolbar (selectie menu)
===================================================== */
.object-toolbar {
  display: none;
  position: absolute;
  right: 16px;
  bottom: 112px;
  z-index: 200;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 8px;
  backdrop-filter: blur(8px);
}

.object-toolbar.open {
  display: flex;
}

/* =====================================================
   7. Scrollbars (clean)
===================================================== */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 10px;
}

/* =====================================================
   8. Utility
===================================================== */
.panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.grid {
  display: grid;
  gap: 12px;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.jersey-number-button {
  min-height: 36px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  background: #111827;
  color: #e5e7eb;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.jersey-number-button:hover {
  background: #1f2937;
  border-color: #374151;
}

h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  margin: 0 0 8px 0;
}

/* =====================================================
   9. Mobile (later belangrijk!)
===================================================== */
@media (max-width: 900px) {

  .header {
    gap: 10px;
    padding: 0 12px;
  }

  .header-logo {
    height: 34px;
  }

  .header-logo img {
    height: 34px;
  }

  .header-action {
    padding: 0 10px;
    font-size: 12px;
  }

  .autosave-status {
    display: none;
  }

  .toast-stack {
    top: 70px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .exercise-library {
    padding: 12px;
  }

  .faq-library {
    padding: 12px;
  }

  .exercise-library-panel,
  .faq-panel {
    max-height: calc(100vh - 24px);
  }

  .exercise-library-list {
    grid-template-columns: 1fr;
  }

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

  .left,
  .right {
    display: none;
  }

  .center {
    height: calc(100vh - 60px);
  }

  #canvas-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

}

/* =========================
   MOBILE TOOLBAR
========================= */
.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;                     /* 🔥 full width */
  height: 70px;

  display: none;
  justify-content: space-around;   /* 🔥 netjes verdeeld */
  align-items: center;

  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(12px);

  border-top: 1px solid #1f2937;
  z-index: 300;
}

.mobile-toolbar button {
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 22px;

  width: 56px;
  height: 56px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toolbar button:active {
  background: #1f2937;
}

/* =========================
   DRAWER
========================= */
.mobile-drawer {
  position: fixed;
  inset: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0);
  pointer-events: none;
  transition: background 0.25s ease;
  z-index: 400;
}

.mobile-drawer.open {
  background: rgba(2, 6, 23, 0.58);
  pointer-events: auto;
}

.mobile-drawer-sheet {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  padding-top: 54px;
  background: #020617;
  border-top: 1px solid #1f2937;
  border-radius: 18px 18px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.36);
}

.mobile-drawer.open .mobile-drawer-sheet {
  transform: translateY(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1f2937;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.92);
  color: #e5e7eb;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.mobile-drawer-close:hover {
  background: #1f2937;
  border-color: #374151;
}

.mobile-drawer-close:active {
  transform: scale(0.94);
}

#drawerContent {
  padding: 0 16px 18px;
}

.mobile-toolbar button {
  touch-action: manipulation;
}

/* =========================
   MOBILE LAYOUT FIX
========================= */
@media (max-width: 900px) {

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

  .left,
  .right {
    display: none;
  }

  .center {
    height: calc(100vh - 60px);
    padding: 12px;              /* 🔥 ruimte rondom */
    display: flex;
    align-items: stretch;
  }

  .canvas-wrapper {
    width: 100%;
    height: 100%;
  }

  #canvas-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;        /* 🔥 weer mooi rounded */
    border: 1px solid #1f2937;
  }

  .toolbar {
    display: none;
  }

  .phase-strip {
    left: 8px;
    right: 8px;
    bottom: 78px;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 6px;
    padding: 6px;
  }

  .phase-strip-head {
    gap: 5px;
  }

  .phase-strip-head strong {
    font-size: 11px;
  }

  .phase-strip-actions {
    grid-template-columns: repeat(5, 20px);
    gap: 3px;
  }

  .phase-strip-actions button {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    font-size: 11px;
  }

  .phase-list {
    gap: 5px;
  }

  .phase-card {
    width: 68px;
    flex-basis: 68px;
    grid-template-rows: 30px auto;
    gap: 3px;
    padding: 4px;
  }

  .phase-thumb {
    height: 30px;
    border-radius: 4px;
  }

  .phase-card strong {
    font-size: 10px;
  }

  .mobile-drawer .toolbar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    padding: 16px;
    transform: none;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .mobile-drawer .tool-group {
    position: static;
    border: 1px solid #1f2937;
    border-radius: 10px;
    background: #0f172a;
    overflow: hidden;
  }

  .mobile-drawer .tool-group > summary {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 12px;
    border-radius: 0;
    background: #111827;
  }

  .mobile-drawer .tool-group > summary::after {
    content: attr(title);
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-drawer .tool-group-panel {
    position: static;
    transform: none;
    flex-wrap: wrap;
    min-width: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .mobile-drawer .tool-group-panel.wide {
    min-width: 0;
  }

  .mobile-drawer .toolbar input[type="range"] {
    width: 100%;
    flex: 1 0 100%;
  }

  .object-toolbar {
    left: 12px;
    right: 12px;
    bottom: 154px;
    overflow-x: auto;
  }

}

@media (max-width: 900px) {

  .mobile-toolbar {
    display: flex;
  }

  .mobile-objects {
    display: block;
  }

}

.mobile-objects {
  position: fixed;
  bottom: 70px; /* boven toolbar */
  left: 0;
  width: 100%;

  display: none;
  z-index: 250;
}

.mobile-objects .scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;

  padding: 10px;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(10px);
}

.mobile-objects img {
  width: 56px;
  height: 56px;
  background: #111827;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
}
