body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

h1, h2 {
  color: #2c3e50;
}

.radio-selector {
  margin: 5px 0;
}

#radio-stations {
  font-weight: bold;
  font-size: 18px;
  padding: 10px;
  width: 100%;
  max-width: 500px;
}

select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 300px;
}

.radio-info, .statistics {
  background: #fff;
  padding: 5px;
  margin: 5px 0;
}

#station-details img {
  margin-top: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tab-header {
  display: flex;
  justify-content: flex-start; /* Aligne les onglets à gauche plutôt que de les espacer */
  background-color: #f1f1f1;
  padding: 10px 5px; /* Réduction du padding horizontal */
  gap: 5px; /* Ajoute un petit espace fixe entre les onglets */
}

.tab-button {
  padding: 12px 15px;
  margin: 0 2px;
  cursor: pointer;
  background-color: inherit;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
}
.tab-button.active {
  background-color: #ccc;
}
.tab {
  display: flex;
  padding: 20px;
}
.tab.active {
  display: flex;
  background-color: white;
  color: #333;
  font-size: 18px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

#radio-table td:nth-child(3) {
  white-space: nowrap;
}

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

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

#radio-table th {
  background-color: #f2f2f2;
}
@media (max-width: 600px) {
  .tab-header {
    flex-direction: column;
  }
  .tab-button {
    margin: 5px 0;
  }
}
<style>
  #icecast-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
  }
  #icecast-table th, #icecast-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
  #icecast-table th {
    background-color: #f2f2f2;
  }
</style>