.batch-users-modal {
  width: min(760px, calc(100vw - 36px)) !important;
  max-width: 760px !important;
}
.batch-users-modal .modal-body {
  max-height: min(74vh, 760px);
  overflow: auto;
}
.batch-user-builder {
  gap: 14px;
}
.batch-user-builder [hidden] {
  display: none !important;
}
.batch-user-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 10px;
}
.batch-user-grid label {
  min-width: 0;
}
.batch-user-grid input,
.batch-user-grid select {
  width: 100%;
  box-sizing: border-box;
}
.batch-prefix small,
#batchPasswordWrap small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.45;
}
.batch-user-preview {
  padding: 15px;
  border: 1px solid #cbd9ed;
  border-radius: 10px;
  background: linear-gradient(145deg, #f8fbff, #f2f6fc);
}
.batch-user-preview > small {
  display: block;
  color: #6c7d94;
  font-size: 9px;
}
.batch-user-preview > strong {
  display: block;
  margin: 5px 0 13px;
  color: #183a69;
  font-size: 18px;
  letter-spacing: 0.4px;
  overflow-wrap: anywhere;
}
.batch-user-preview > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.batch-user-preview p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid #dce5f1;
  border-radius: 8px;
  background: #fff;
}
.batch-user-preview p span {
  color: #7a899d;
  font-size: 9px;
}
.batch-user-preview p b {
  color: #26364c;
  font-size: 12px;
}
.batch-validation {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid #a9d9c9;
  border-radius: 8px;
  background: #edf9f4;
  color: #22614c;
  font-size: 10px;
}
.batch-validation b {
  font-size: 11px;
}
.batch-validation.blocked {
  border-color: #efb9b9;
  background: #fff2f2;
  color: #a33a3a;
}
.batch-users-modal .modal-foot .primary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}
.theme-dark .batch-user-preview {
  border-color: #34465c;
  background: linear-gradient(145deg, #172130, #111923);
}
.theme-dark .batch-user-preview > strong {
  color: #e7f0ff;
}
.theme-dark .batch-user-preview p {
  border-color: #35465a;
  background: #1c2735;
}
.theme-dark .batch-user-preview p b {
  color: #edf4ff;
}
.theme-dark .batch-validation {
  border-color: #2e6958;
  background: #152b27;
  color: #8cd7bd;
}
.theme-dark .batch-validation.blocked {
  border-color: #744147;
  background: #301d22;
  color: #ffadb3;
}
@media (max-width: 700px) {
  .batch-user-grid {
    grid-template-columns: 1fr 1fr;
  }
  .batch-prefix {
    grid-column: 1/-1;
  }
  .batch-user-preview > div {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .batch-users-modal {
    width: calc(100vw - 20px) !important;
  }
  .batch-user-grid {
    grid-template-columns: 1fr;
  }
  .batch-prefix {
    grid-column: auto;
  }
  .batch-user-preview > strong {
    font-size: 14px;
  }
}
