/* Style pour les divs cachées en mobile */
.hidden-content {
  display: none;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-top: 15px;
}

/* Version mobile : contenu sous la carte */
@media (max-width: 991.98px) {
  .hidden-content.show {
      display: block;
  }
}

/* Version desktop : contenu pleine largeur */
@media (min-width: 992px) {
  .full-width-container {
      width: 100%;
      height: 0;
      overflow: hidden;
      transition: height 0.3s ease-out;
  }

  .full-width-container.show {
      height: auto;
      margin-bottom: 1.5rem;
  }

  .full-width-content {
      padding: 30px;
      background-color: #f8f9fa;
      border-radius: 8px;
      box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }

  .full-width-container.show .full-width-content {
      opacity: 1;
      transform: translateY(0);
  }
}