.repair-list {
  display: grid;
  gap: 1rem;
}
.repair-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.repair-header {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.repair-status {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.repair-progress {
  background: #f5f5f5;
  border-radius: 8px;
  height: 8px;
  overflow: hidden;
}
.repair-progress .bar {
  height: 100%;
  transition: width 0.3s ease-in-out;
}

