/* Track Mishnah UI 2.19.6
 * Keep assignment and whole-masechta hold actions together.
 */

body.app-theme-jewel .bulk-assignment-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

body.app-theme-jewel .bulk-assignment-actions .button {
  flex: 1 1 auto;
  white-space: nowrap;
}

body.app-theme-jewel .claim-actions {
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  body.app-theme-jewel .bulk-assignment-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
  }

  body.app-theme-jewel .bulk-assignment-actions .button { width: 100%; }
}
