html,
body,
#app {
  overflow: hidden;
}

[data-css="app"] {
  min-height: 0;
  overflow: hidden;
}

[data-css="app-content"] {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
}

.admin-page-layout {
  --admin-page-section-radius: 20px;
  --admin-page-section-border: #e2e8f0;
  --admin-page-section-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  --admin-page-table-divider: #e5e7eb;
  --admin-page-table-header-bg: #f8fafc;
  --admin-page-table-header-color: #64748b;
  --admin-page-table-body-color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.admin-page-layout--padded {
  padding: 24px;
}

.admin-page-breadcrumb-bar {
  width: 100%;
  min-width: 0;
  margin: 0 0 4px;
  padding: 0;
}

.admin-page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.admin-page-breadcrumb__link,
.admin-page-breadcrumb__text,
.admin-page-breadcrumb__current,
.admin-page-breadcrumb__separator {
  display: inline-flex;
  align-items: center;
}

.admin-page-breadcrumb__link {
  color: #64748b;
  text-decoration: none;
  transition: color 160ms ease;
}

.admin-page-breadcrumb__link:hover {
  color: #0f172a;
}

.admin-page-breadcrumb__text,
.admin-page-breadcrumb__separator {
  color: #94a3b8;
}

.admin-page-breadcrumb__current {
  color: #0f172a;
  font-weight: 600;
}

.admin-page-layout__title {
  margin: 0;
  color: #0f172a;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.admin-page-layout__description {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.admin-page-layout__card {
  padding: 24px;
  border-radius: var(--admin-page-section-radius);
  border: 1px solid var(--admin-page-section-border);
  background: #ffffff;
  box-shadow: var(--admin-page-section-shadow);
}

.admin-page-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-editor-page > section {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-editor-page__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

.article-editor-page__toolbar {
  padding: 16px 20px;
  border-radius: var(--admin-page-section-radius);
  border: 1px solid var(--admin-page-section-border);
  background: #ffffff;
  box-shadow: var(--admin-page-section-shadow);
}

.article-editor-page__toolbar-row {
  grid-column: 1 / -1;
  position: sticky;
  top: 0;
  z-index: 15;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.article-editor-page__toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 1200px) {
  .article-editor-page__grid {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }

  .article-editor-page__meta {
    position: sticky;
    top: 12px;
  }
}

.article-editor-page__meta .admin-page-field-input,
.article-editor-page__meta .admin-page-field-textarea {
  max-width: none;
}

.article-editor-page__translation-row {
  min-height: 34px;
}

.article-editor-page__translation-button {
  min-width: 88px;
  white-space: nowrap;
}

.article-editor-page__translation-error {
  font-size: 12px;
  line-height: 1.45;
}

.article-editor-page__locale-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  padding: 5px;
  align-items: stretch;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #e8edf3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(15, 23, 42, 0.04);
}

.article-editor-page__locale-tab {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #64748b;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  min-width: 116px;
}

.article-editor-page__locale-tab:hover {
  background: rgba(255, 255, 255, 0.52);
  color: #475569;
}

.article-editor-page__locale-tab:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #e8edf3,
    0 0 0 4px rgba(109, 40, 217, 0.45);
}

.article-editor-page__locale-tab:active:not(
    .article-editor-page__locale-tab--active
  ) {
  transform: scale(0.98);
}

.article-editor-page__locale-tab--active {
  background: linear-gradient(165deg, #ffffff 0%, #faf8ff 100%);
  color: #4c1d95;
  font-weight: 600;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.22),
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(109, 40, 217, 0.14);
}

.article-editor-page__locale-tab--active:hover {
  background: linear-gradient(165deg, #ffffff 0%, #faf8ff 100%);
  color: #4c1d95;
}

.article-editor-page__locale-tab-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.article-editor-page__locale-tab-label {
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0;
}

.article-editor-page__locale-tab--active
  .article-editor-page__locale-tab-label {
  color: #0f172a;
}

.article-editor-page__locale-badge {
  margin-left: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  vertical-align: middle;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.article-editor-page__locale-badge--complete {
  background: #dcfce7;
  color: #166534;
}

.article-editor-page__locale-badge--in_progress {
  background: #fef9c3;
  color: #854d0e;
}

.article-editor-page__locale-badge--empty {
  background: #f1f5f9;
  color: #64748b;
}

.article-editor-page__meta-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}

.admin-page-field-input,
.admin-page-field-select,
.admin-page-field-textarea {
  width: 100%;
  max-width: 360px;
  padding: 10px 12px;
  border: 1px solid #d7dde5;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.admin-page-field-input:focus,
.admin-page-field-select:focus,
.admin-page-field-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  outline: none;
}

.admin-page-field-select {
  min-width: 180px;
}

.admin-page-field-textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-page-section {
  border: 1px solid var(--admin-page-section-border);
  border-radius: var(--admin-page-section-radius);
  background: #ffffff;
  box-shadow: var(--admin-page-section-shadow);
  overflow: hidden;
}

.admin-page-subsection {
  padding: 24px;
  border: 1px solid var(--admin-page-section-border);
  border-radius: var(--admin-page-section-radius);
  background: #f8fafc;
}

.admin-page-subsection .admin-page-field-input,
.admin-page-subsection .admin-page-field-textarea {
  max-width: none;
}

.admin-page-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(15, 23, 42, 0.72);
}

.admin-page-modal__dialog {
  display: flex;
  width: min(960px, 100%);
  max-height: min(760px, 90vh);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--admin-page-section-border);
  border-radius: var(--admin-page-section-radius);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.admin-page-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--admin-page-table-divider);
  background: #ffffff;
}

.admin-page-modal__title {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.admin-page-modal__close {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
}

.admin-page-modal__body {
  /* display: flex; */
  min-height: 420px;
  /* flex: 1; */
  /* align-items: center; */
  /* justify-content: center; */
  padding: 24px;
  background: #f8fafc;
}

.admin-page-modal.article-preview-modal .admin-page-modal__dialog {
  width: min(440px, 92vw);
  max-height: min(860px, 92vh);
  min-width: 0;
}

.admin-page-modal.article-preview-modal
  .admin-page-modal__body.article-preview-modal__body {
  align-items: stretch;
  justify-content: flex-start;
  min-height: 320px;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.article-preview-modal__footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 24px;
  border-top: 1px solid var(--admin-page-table-divider);
  background: #ffffff;
}

.admin-page-modal--compact .admin-page-modal__dialog {
  width: min(480px, 100%);
  max-height: none;
}

.admin-page-modal--compact .admin-page-modal__header {
  min-height: 56px;
  padding: 14px 18px;
}

.admin-page-modal--compact .admin-page-modal__title {
  font-size: 16px;
}

.admin-page-modal--compact .admin-page-modal__body {
  min-height: 0;
  align-items: stretch;
  justify-content: flex-start;
  padding: 18px;
}

.admin-page-modal__body-text {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.admin-page-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.admin-page-modal__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid #d7dde5;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.admin-page-modal__action-button:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.admin-page-modal__action-button--secondary {
  color: #475569;
}

.admin-page-modal__action-button--danger {
  border-color: #fecaca;
  background: #fef2f2;
  color: #dc2626;
}

.admin-page-modal__action-button--danger:hover {
  border-color: #fca5a5;
  background: #fee2e2;
}

.admin-page-modal__action-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.admin-page-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-page-table-footer {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--admin-page-table-divider);
}

.admin-page-summary {
  flex: 1 1 180px;
  min-width: 0;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.admin-page-row-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.admin-page-row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #667085;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.admin-page-row-action:hover {
  background: #eff6ff;
  color: #0f172a;
}

.admin-page-row-action--danger:hover {
  background: #fef2f2;
  color: #dc2626;
}

.admin-page-row-action:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.admin-page-row-action .adminjs_Icon {
  width: 16px;
  height: 16px;
}

.admin-page-text-action {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2563eb;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
}

.admin-page-text-action:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.admin-page-text-action--danger {
  color: #2563eb;
}

.admin-page-text-action--danger:hover {
  color: #dc2626;
}

.admin-page-text-action:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  text-decoration: none;
}

.adminjs_Pagination {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.adminjs_Pagination > :first-child,
.adminjs_Pagination > :last-child {
  border: 0;
}

.adminjs_PaginationLink {
  min-width: 32px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #334155;
  box-shadow: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.adminjs_PaginationLink:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  color: #0f172a;
}

.adminjs_PaginationLink.current,
.adminjs_PaginationLink[class*="current"] {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
}

.adminjs_PaginationLink.current:hover,
.adminjs_PaginationLink[class*="current"]:hover {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
}

.admin-page-section--table {
  box-shadow: none;
}

.admin-page-table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.admin-page-table-shell {
  border: 1px solid var(--admin-page-section-border);
  border-radius: var(--admin-page-section-radius);
  background: var(--admin-page-table-header-bg);
  overflow-x: auto;
  overflow-y: hidden;
}

.admin-page-section--table > section:not(.admin-page-table-shell) {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: auto;
}

.admin-page-table,
.admin-page-section--table table {
  width: max-content;
  min-width: 100%;
  background: #ffffff;
  border-collapse: collapse;
}

.admin-page-table thead th,
.admin-page-section--table table thead th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--admin-page-table-divider);
  background: var(--admin-page-table-header-bg);
  color: var(--admin-page-table-header-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}

.admin-page-table tbody td,
.admin-page-section--table table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--admin-page-table-divider);
  background: #ffffff;
  color: var(--admin-page-table-body-color);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
}

.admin-page-table tbody tr:last-child td,
.admin-page-section--table table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-page-table tbody tr:hover td,
.admin-page-section--table table tbody tr:hover td {
  background: #fcfdff;
}

@media (max-width: 767px) {
  .admin-page-layout {
    gap: 16px;
  }

  .admin-page-layout--padded {
    padding: 16px;
  }

  .admin-page-layout__title {
    font-size: 24px;
  }

  .admin-page-layout__card {
    padding: 18px;
  }

  .admin-page-stack {
    gap: 16px;
  }

  .admin-page-modal {
    padding: 16px;
  }

  .admin-page-modal__header {
    min-height: 64px;
    padding: 16px 18px;
  }

  .admin-page-modal__body {
    padding: 18px;
  }

  .admin-page-footer {
    align-items: flex-end;
  }

  .admin-page-table-footer {
    padding: 16px;
  }

  .adminjs_Pagination {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .adminjs_PaginationLink {
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    border-radius: 10px;
  }

  .admin-page-table thead th,
  .admin-page-table tbody td,
  .admin-page-section--table table thead th,
  .admin-page-section--table table tbody td {
    padding: 12px 14px;
  }
}

/* ==========================================================================
   Become Master Modal — polished form styling
   ========================================================================== */

/* Dialog sizing */
.become-master-modal .admin-page-modal__dialog {
  max-height: min(820px, 92vh);
  width: min(820px, 100%);
}

/* Header */
.become-master-modal__header {
  padding: 20px 28px !important;
}

/* Custom close button — native <button>, full control */
.become-master-modal__close-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  color: #64748b;
  font-size: 15px;
  cursor: pointer;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.become-master-modal__close-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

/* Body */
.become-master-modal__body {
  background: #ffffff !important;
  padding: 28px 28px 20px !important;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

/* Two-column grid */
.become-master-modal__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

/* Full-width rows */
.become-master-modal__field--full {
  grid-column: 1 / -1;
}

/* Field wrapper */
.become-master-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Labels */
.become-master-modal__field-label {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Required asterisk */
.become-master-modal__required {
  color: #ef4444;
  font-weight: 700;
  margin-left: 1px;
}

/* Shared input / select / textarea base */
.become-master-modal__field-input,
.become-master-modal__field-select,
.become-master-modal__field-textarea {
  width: 100%;
  padding: 9px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
  box-sizing: border-box;
  font-family: inherit;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.become-master-modal__field-input::placeholder,
.become-master-modal__field-textarea::placeholder {
  color: #a0aec0;
}

/* Focus ring */
.become-master-modal__field-input:focus,
.become-master-modal__field-select:focus,
.become-master-modal__field-textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  outline: none;
}

/* Hover idle */
.become-master-modal__field-input:hover,
.become-master-modal__field-select:hover,
.become-master-modal__field-textarea:hover {
  border-color: #cbd5e1;
}

.become-master-modal__field-input:focus:hover,
.become-master-modal__field-select:focus:hover,
.become-master-modal__field-textarea:focus:hover {
  border-color: #3b82f6;
}

/* Select */
.become-master-modal__field-select {
  appearance: auto;
  cursor: pointer;
}

/* Textarea */
.become-master-modal__field-textarea {
  min-height: 88px;
  resize: vertical;
}

/* Hint text */
.become-master-modal__field-hint {
  display: block;
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.5;
}

/* Specialty multi-select chips */
.become-master-modal__specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.become-master-modal__specialty-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  font-family: inherit;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
}

.become-master-modal__specialty-chip:hover {
  border-color: #8d35ff;
  color: #6d28d9;
}

.become-master-modal__specialty-chip--selected {
  border-color: transparent;
  background: linear-gradient(135deg, #8d35ff 0%, #b05fff 100%);
  color: #ffffff;
}

.become-master-modal__specialty-chip--selected:hover {
  color: #ffffff;
}

.become-master-modal__specialty-chip-close {
  font-size: 14px;
  line-height: 1;
}

/* ---------- Footer ---------- */
.become-master-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 28px 20px;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
  flex-shrink: 0;
}

.become-master-modal__error {
  margin-right: auto;
  color: #ef4444;
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- Buttons (native <button>, no AdminJS override) ---------- */
.become-master-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

/* Cancel */
.become-master-modal__btn--cancel {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
}

.become-master-modal__btn--cancel:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #334155;
}

/* Submit — vivid blue */
.become-master-modal__btn--submit {
  border: none;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow:
    0 1px 2px rgba(37, 99, 235, 0.2),
    0 4px 12px rgba(37, 99, 235, 0.15);
}

.become-master-modal__btn--submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow:
    0 2px 4px rgba(37, 99, 235, 0.25),
    0 6px 16px rgba(37, 99, 235, 0.2);
}

.become-master-modal__btn--submit:active:not(:disabled) {
  transform: scale(0.98);
}

/* Disabled state for both buttons */
.become-master-modal__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .become-master-modal__form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .become-master-modal__body {
    padding: 20px 18px 16px !important;
  }

  .become-master-modal__footer {
    padding: 14px 18px 16px;
  }

  .become-master-modal__header {
    padding: 16px 18px !important;
  }
}
