/* statusbar.css - Bottom Status Bar, Mini Player and Progress Meter */
#status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  font-size: 11px;
  height: var(--statusbar-height);
  user-select: none;
  gap: 16px;
}

.status-left, .status-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-item.pending-changes {
  color: var(--warning);
  font-weight: 600;
}

.status-progress-container {
  display: none;
  align-items: center;
  gap: 8px;
}

.status-progress-container.active {
  display: flex;
}

.status-progress-bar {
  width: 120px;
  height: 6px;
  background: var(--bg-input);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.status-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s ease;
}

/* Mini Audio Player in Status Bar */
#mini-player {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--bg-input);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

#mini-player.active {
  display: flex;
}

.player-btn {
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.player-title {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: var(--text-main);
}

.player-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.player-progress {
  width: 80px;
  height: 4px;
  background: var(--bg-hover);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
}
