.status-panel {
  width: 100%;
  background: var(--color-surface-alt);
  border-radius: var(--border-radius-md);
  box-shadow: none;
  border: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: fadeIn 0.2s ease-out;
}

.status-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.status-content {
  flex: 1;
  min-width: 0;
}

.status-text {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.4;
  min-height: 1.4em;
}

.status-text:empty::after {
  content: "Ready when you are.";
  color: var(--color-text-light);
}

.status-progress {
  position: relative;
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.status-progress-bar {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  transition: width 0.3s ease;
}

.status-progress-text {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 12px;
  color: var(--color-text-light);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
