/* Bulk action toolbar — ko'p tanlangan elementlar ustida amal bajarish uchun.
 * Tepada (sticky) yoki pastda (mobil: fixed) ko'rinadi.
 * Faqat ≥1 tanlanganda .is-show klassi qo'shiladi.
 */

.bulk-bar {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 10px;
  border: 1px solid var(--rtd-border-color);
  background: var(--rtd-color-gray-50, #f8f9fa);
  border-radius: 8px;
  margin: 8px 0;
}
.bulk-bar.is-show { display: flex; }

.bulk-bar__count {
  font-size: 12px;
  color: var(--rtd-text-secondary);
  font-weight: 600;
  margin-right: auto;
}

.bulk-bar__clear {
  font-size: 12px;
  background: transparent;
  border: 0;
  color: var(--rtd-text-muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 6px;
}

.bulk-bar--bottom {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, .06);
}

@media (max-width: 640px) {
  .bulk-bar--bottom {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    margin: 0;
  }
}
