/* Batch-actions — gemensam stil för alla vyer med batch-markering */
.batch-bar {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  margin-bottom: 8px;
  border-radius: 6px;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.batch-bar--primary {
  background: #fffbf5;
  border-left: 3px solid #FF9F46;
}
.batch-bar--success {
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
}
.batch-bar button {
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}
.batch-bar .batch-btn-primary {
  background: #FF9F46;
  color: #fff;
}
.batch-bar .batch-btn-success {
  background: #16a34a;
  color: #fff;
}
.batch-bar .batch-btn-cancel {
  background: #f3f4f6;
  color: #666;
  border: 1px solid #e5e7eb;
}
