/* ═══════════════════════════════════════════════════════════════
   Barre de statut
   ═══════════════════════════════════════════════════════════════ */

.status {
  min-height: 52px;
  background: linear-gradient(180deg, var(--toolbar-bg1) 0%, var(--toolbar-bg2) 100%);
  border-top: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 16px;
  flex-shrink: 0;
  gap: 12px;
}

/* Conteneur des informations */
.st-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  width: 100%;
}

.st-group {
  white-space: nowrap;
}

.st-val {
  color: var(--display-color);
  font-weight: 700;
  font-family: 'SF Mono', Consolas, monospace;
  background: #0e0e10;
  border: 1px solid var(--bdr);
  border-radius: 5px;
  padding: 2px 8px;
  text-shadow: 0 0 6px rgba(48, 209, 88, .15);
  font-size: 13px;
  display: inline-block;
  text-align: center;
  min-width: 70px;
}

#stFreq { min-width: 80px; }
.st-dur  { min-width: 70px; }
.st-sel-start, .st-sel-end { min-width: 70px; }
.st-sep {
  color: var(--tx2);
  font-weight: 400;
  font-size: 14px;
  padding: 0 2px;
}

.st-label {
  color: var(--tx2);
  font-weight: 400;
  font-size: 14px;
}

/* Responsive : masquer progressivement depuis la droite */
@media (max-width: 1100px) {
  .st-g-sel { display: none; }
}
@media (max-width: 900px) {
  .st-g-dur { display: none; }
}
@media (max-width: 750px) {
  .st-g-chan { display: none; }
}
@media (max-width: 600px) {
  .st-g-bits { display: none; }
}
@media (max-width: 500px) {
  .st-g-freq { display: none; }
}
