/**
 * CreateAdminRole — drawer form for creating a new role.
 *
 * Override handles:
 *   .byline-role-create-wrap     — outer container
 *   .byline-role-create-form     — vertical-stack form element
 *   .byline-role-create-actions  — Cancel/Save row
 *   .byline-role-create-action   — buttons in the actions row
 */

.wrap,
:global(.byline-role-create-wrap) {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
  padding: var(--spacing-4);
  margin-top: var(--spacing-4);
}

.form,
:global(.byline-role-create-form) {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
  padding-top: var(--spacing-8);
}

.actions,
:global(.byline-role-create-actions) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-8);
  margin-top: var(--spacing-16);
}

.action,
:global(.byline-role-create-action) {
  min-width: 4rem;
}
