/* Styles pour les onglets */
.tabs {
    display: flex;
    justify-content: start;
    margin-bottom: 20px;
  }
  
  .tab-button {
    padding: 10px 20px;
    margin-right: 10px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
  }
  
  .tab-button.active {
    background-color: #4472c4;
    color: white;
    border-color: #4472c4;
  }
  
  /* Styles pour les conteneurs des plots */
  .plot-container {
    display: none;
  }
  
  .plot-container.active {
    display: block;
  }
  
  .iframe-plot {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }
  