/* Par défaut (mobile) : layout classique, pas de scroll forcé */
.container {
  display: block;
  height: auto;
  overflow: visible;
}

.column {
  width: 100%;
  padding: 10px;
  overflow: visible;
  box-sizing: border-box;
}

/* Structure interne */
.content {
  display: block;
  min-height: auto;
}

/* Desktop uniquement : deux colonnes scrollables indépendamment */
@media (min-width: 1024px) {
  html, body {
    overflow: hidden;
  }

  .container {
    display: flex;
    height: 100vh;
    align-items: stretch;
  }

  .left-column {
    width: 30%;
    max-width: 30%;
    overflow-y: auto;
    height: 100%;
  }

  .right-column {
    width: 70%;
    max-width: 70%;
    overflow-y: auto;
    height: 100%;
  }

  .content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  
  .left-column .content {
    margin-bottom: -30px;
  }
}

/* Scrollbar masquée mais scroll toujours actif - compatible Chrome, Edge, Safari */
.left-column::-webkit-scrollbar,
.right-column::-webkit-scrollbar {
  display: none;
}

.left-column,
.right-column {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer & Edge Legacy */
}
