body, html {
    height: 100%; /* Assure que tout peut s'étendre à 100% de la fenêtre */
    margin: 0;
    padding: 0;
}
section {
    display: flex; /* Active le mode Flexbox */
    width: 100%; /* Assure que le conteneur occupe toute la largeur */
}

#col1, #col2 {
    flex: 1; /* Les deux colonnes occupent une part égale */
    box-sizing: border-box; /* Inclut les marges et bordures dans la largeur totale */
}

#col2 {
    flex: 3; /* Donne plus d'espace à la colonne contenant l'iframe */
}

#col2 iframe {
    width: 100%; /* L'iframe occupe toute la largeur de la colonne */
    height: 100%; /* L'iframe occupe toute la hauteur de la colonne */
    border: none;
}
.band-info-panel {
    width: 400px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.band-value {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    padding: 3px 0;
    border-bottom: 1px solid #ddd;
}

/* Tableau des bandes */
.band-info-panel {
    margin-top: 20px;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
}

#band-values-table {
    width: 100%;
    border-collapse: collapse;
}

#band-values-table th,
#band-values-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

#band-values-table th {
    background-color: #f4f4f4;
}

#band-values-table td {
    text-align: center;
}

#center-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; /* Ajustez la largeur selon vos besoins */
    height: auto;
    margin: 0 auto;
    background-color: transparent; /* Pas de couleur de fond */
}

#access-dashapps {
    padding: 10px 15px;
    font-size: 14px;
    color: white;
    background-color: #007bff; /* Couleur bleue */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#access-dashapps:hover {
    background-color: #0056b3; /* Couleur plus foncée au survol */
}