/* Section divider bar with a right-aligned action group. The divider rule and the actions share
   one row; the rule takes the free space and the actions sit flush right. */
.app-divider-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.app-divider-bar__rule {
  flex: 1 1 auto;
  min-width: 0;
}

.app-divider-bar__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Section titles on the divider use the house 13px weight-600 primary tone. */
.app-divider-bar .ant-divider-inner-text {
  font-size: 13px;
  font-weight: 600;
}
