.mo-create-table-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.mo-create-table-tab {
  min-height: 42px;
  padding: 9px 13px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  opacity: 0.68;
  transition:
    background-color 140ms ease,
    opacity 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.mo-create-table-tab:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.055);
}

.mo-create-table-tab.is-active {
  opacity: 1;
  background: rgba(124, 156, 255, 0.15);
  box-shadow:
    inset 0 0 0 1px rgba(124, 156, 255, 0.22),
    0 5px 16px rgba(0, 0, 0, 0.12);
}

.mo-create-table-tab:active {
  transform: scale(0.985);
}

.batch-create-table-form[hidden],
.mo-duplicate-inline-form[hidden] {
  display: none !important;
}

.mo-duplicate-inline-form select,
.mo-duplicate-inline-form input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px !important;
}

.mo-duplicate-checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.mo-duplicate-checkbox input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mo-duplicate-checkbox span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mo-duplicate-checkbox strong {
  font-size: 13px;
}

.mo-duplicate-checkbox small {
  font-size: 11px;
  opacity: 0.65;
}

.mo-duplicate-information {
  padding: 11px 13px;
  border: 1px solid rgba(124, 156, 255, 0.15);
  border-radius: 11px;
  background: rgba(124, 156, 255, 0.075);
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.86;
}

.mo-duplicate-message {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
}

.mo-duplicate-success {
  border: 1px solid rgba(50, 210, 140, 0.22);
  background: rgba(50, 210, 140, 0.1);
}

.mo-duplicate-error {
  border: 1px solid rgba(255, 90, 110, 0.22);
  background: rgba(255, 90, 110, 0.1);
}

@media (max-width: 560px) {
  .mo-create-table-tabs {
    grid-template-columns: 1fr;
  }
}
