#bodyHeaderMiddle {
  display: none;
}

@media (max-width: 1024px) {
  .passportsTableDesktop {
    display: none;
  }
}
#passports .buttonDiv {
  text-align: right;
}
#passports .buttonDiv button {
  margin: 0.5rem 0;
}
#passports .actionsDiv {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
@media screen and (min-width: 1367px) {
  #passports .actionsDiv {
    flex-direction: row;
  }
}
#passports .passportsTableDesktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  #passports .passportsTableDesktop {
    display: table;
  }
}
#passports .passportsTableMobile {
  display: flex;
  justify-content: center;
  margin-left: -2rem;
  width: calc(100% + 4rem);
}
@media screen and (min-width: 1025px) {
  #passports .passportsTableMobile {
    display: none;
  }
}
#passports .passportsTableMobile .passport-table {
  overflow-x: auto;
  max-width: 100%;
  width: auto;
}
#passports .passportsTableMobile .passport-row {
  display: flex;
}
#passports .passportsTableMobile .passport-row--header {
  font-weight: 600;
}
#passports .passportsTableMobile .passport-cell {
  min-width: 125px;
  padding: 0.5rem;
  width: 125px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #eee;
  text-align: center;
}
#passports .passportsTableMobile .passport-cell--header {
  position: sticky;
  left: 0;
  background: #f9f9f9;
  font-weight: 700;
  text-align: right;
  z-index: 1;
}
#passports .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-index-absolute-top);
}
#passports .modal-backdrop .modal-panel {
  background: #fff;
  max-height: 90vh;
  max-width: calc(100% - 2rem);
  overflow: auto;
  padding: 1.5rem;
  border-radius: 4px;
  width: 800px;
  /* adjust as needed */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding-bottom: 0;
}
#passports .modal-backdrop .modal-panel h3 {
  margin-top: 0;
}
#passports .modal-backdrop .modal-panel .formSequence-steps {
  display: none;
}
#passports .modal-backdrop .modal-panel .formFieldGroup-previous-next {
  display: none !important;
}
#passports .modal-backdrop .modal-panel .formFieldGroup-cancel-submit {
  display: flex;
  justify-content: space-between;
}
#passports .modal-backdrop .modal-panel form:last-child {
  display: none;
}
#passports .modal-panel .actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

#dumb {
  display: none;
}
/*# sourceMappingURL=passports.css.map */