h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 600;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login__body {
  max-width: 375px;
  background-color: #ffffff;
  padding: 32px;
  padding-top: 24px;
  border-radius: 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: solid 1px rgba(0, 0, 0, 0.175);
}
.login__title {
  font-size: 24px;
  font-weight: 500;
  color: #242424;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}
.login__subtitle {
  font-size: 12px;
  font-weight: 300;
  color: #242424;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
}
.login__submit {
  width: 100%;
  margin-bottom: 16px;
  height: 32px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  cursor: pointer;
  border: solid 1px #242424;
  background: #242424;
  flex: 1;
  color: #ffffff;
}
.login__error {
  margin-top: 8px;
  margin-bottom: 8px;
  height: 20px;
  width: 100%;
}
.login__error p {
  font-size: 12px;
  font-weight: 400;
  color: #e72323;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}
.login__footer {
  font-size: 12px;
  font-weight: 400;
  color: #242424;
  font-family: "Poppins", sans-serif;
  opacity: 0.3;
  text-align: center;
  margin: 0;
  padding: 0;
}

.inputfield {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  flex: 1;
  min-width: 0;
  margin-bottom: 8px;
}
.inputfield__body .input-field:focus {
  outline: none;
  border-color: #242424;
}
.inputfield__body .input-field--error {
  border-color: #FA4C4C !important;
}
.inputfield__body .label {
  font-size: 14px;
  font-weight: 500;
  color: #242424;
  font-family: "Poppins", sans-serif;
}
.inputfield__body input {
  box-sizing: border-box;
  width: 100%;
  margin-top: 4px;
  height: 32px;
  border-radius: 8px;
  border: solid 1px #F0F1F3;
  background: #FBFBFB;
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  font-family: "Poppins", sans-serif;
  padding: 0 8px;
}
.inputfield__body input:hover {
  border-color: #242424;
}
.inputfield__body input[readonly] {
  pointer-events: none;
  border: solid 1px #F0F1F3;
  background: #F3F3F3;
}

.inputfield-row {
  display: flex;
  gap: 16px;
}

@media (max-width: 750px) {
  .inputfield-row {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .calendar-opening__slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.textarea__header {
  margin-bottom: 8px;
  height: 24px;
  display: flex;
  align-items: center;
}
.textarea__header label {
  margin: 0px 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #242424;
}
.textarea__body {
  margin-bottom: 8px;
}
.textarea__body textarea {
  width: 100%;
  height: 96px;
  outline: none;
  border: solid 1px #f0f1f3;
  border-radius: 8px;
  background: #fbfbfb;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #242424;
  padding: 8px;
  box-sizing: border-box;
  resize: none !important;
  margin-bottom: 8px;
}
.textarea__body textarea:focus {
  border: solid 1px #6c5ce7;
}
.textarea__body textarea:hover {
  border-color: #242424;
}

.select {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  flex: 1;
  min-width: 0;
}
.select__body .label {
  font-size: 14px;
  font-weight: 500;
  color: #242424;
  font-family: "Poppins", sans-serif;
}
.select__body select {
  box-sizing: border-box;
  width: 100%;
  margin-top: 4px;
  height: 32px;
  border-radius: 8px;
  border: solid 1px #F0F1F3;
  background: #FBFBFB;
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  font-family: "Poppins", sans-serif;
  padding: 0 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23242424' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 32px;
}
.select__body select:hover {
  border-color: #242424;
}

.checkbox {
  display: flex;
}
.checkbox__body {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox__body input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: #242424;
  border: solid 2px transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.checkbox__body input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.2s ease;
}
.checkbox__body input:checked {
  background: #6c5ce7;
}
.checkbox__body input:checked::after {
  transform: translateY(-50%) translateX(18px);
}
.checkbox__body label {
  font-size: 14px;
  font-weight: 500;
  color: #242424;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.booking-fields {
  border: 0;
  padding: 0;
  margin: 0;
  transition: opacity 0.2s ease;
  margin-top: 16px;
  overflow: hidden;
  padding: 16px;
  box-sizing: border-box;
  overflow: hidden;
  transition: opacity 0.2s ease;
  border: solid 1px #f0f1f3;
  border-radius: 12px;
}
.booking-fields:disabled {
  opacity: 0;
  pointer-events: none;
  height: 0;
  padding: 0;
  margin: 0;
}

.tagselect {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.tagselect__field {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  min-height: 36px;
  padding: 0px 6px;
  border-radius: 8px;
  border: solid 1px #F0F1F3;
  background: #FBFBFB;
  margin-bottom: 8px;
}
.tagselect__field:focus-within {
  border-color: #242424;
}
.tagselect__chips {
  display: contents;
}
.tagselect__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  background: #242424;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.tagselect__chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.tagselect__input {
  flex: 1;
  min-width: 80px;
  height: 22px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #242424;
  outline: none;
}
.tagselect__suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 10;
  margin: 0;
  padding: 4px;
  list-style: none;
  border-radius: 8px;
  border: solid 1px #F0F1F3;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-height: 180px;
  overflow-y: auto;
}
.tagselect__suggestion {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #242424;
  cursor: pointer;
}
.tagselect__suggestion:hover {
  background: #F3F3F3;
}

.calendar-hh {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  flex: 1;
  min-width: 0;
}
.calendar-hh__body {
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.calendar-hh__body fieldset {
  flex: 1;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  transition: opacity 0.2s ease;
}
.calendar-hh__body fieldset:disabled {
  opacity: 0.3;
}
.calendar-hh__body p {
  font-size: 18px;
  color: #242424;
  margin: 0 8px;
}
.calendar-hh__body input[type=time] {
  box-sizing: border-box;
  height: 32px;
  border-radius: 8px;
  border: solid 1px #F0F1F3;
  background: #FBFBFB;
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  font-family: "Poppins", sans-serif;
  padding: 0 8px;
}
.calendar-hh__body input[type=time]:hover {
  border-color: #242424;
  outline: none;
}
.calendar-hh__body input[type=time]:focus {
  outline: none;
  border-color: #242424;
}
.calendar-hh__fields input[type=time].input--error {
  border-color: #FA4C4C !important;
}

.calendar-opening {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  flex: 1;
  min-width: 0;
  transition: opacity 0.2s ease;
}
.calendar-opening.is-disabled .calendar-opening__slots {
  opacity: 0.3;
  pointer-events: none;
}
.calendar-opening__slots {
  display: flex;
  gap: 8px;
}
.calendar-opening__slots fieldset {
  gap: 8px;
}
.calendar-opening__body {
  display: flex;
  align-items: center;
  margin-top: 4px;
  gap: 8px;
}
.calendar-opening__body fieldset {
  flex: 1;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}
.calendar-opening__body p {
  font-size: 18px;
  color: #242424;
  margin: 0;
}
.calendar-opening__body input[type=time] {
  box-sizing: border-box;
  height: 32px;
  border-radius: 8px;
  border: solid 1px #F0F1F3;
  background: #FBFBFB;
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  font-family: "Poppins", sans-serif;
  padding: 0 8px;
}
.calendar-opening__body input[type=time]:hover {
  border-color: #242424;
  outline: none;
}
.calendar-opening__body input[type=time]:focus {
  outline: none;
  border-color: #242424;
}
.calendar-opening__fields input[type=time].input--error {
  border-color: #FA4C4C !important;
}
.calendar-opening .btn--delete-slot {
  background: hwb(0 30% 2%/0.4);
  border-radius: 4px;
  border: solid 1px #FA4C4C;
  color: #FA4C4C;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
.calendar-opening .btn--add-slot {
  background: #E4E6EB;
  border-radius: 4px;
  border: solid 1px #a2a3a7;
  color: #a2a3a7;
  cursor: pointer;
  height: 20px;
  width: 20px;
}

.opening-hours .label__day {
  width: 32px;
}
.opening-hours .label__header {
  margin-top: 8px;
}

.separator__modal {
  margin: 32px 0;
  width: 100%;
  height: 1px;
  background: #f0f1f3;
}

.label__header {
  margin-bottom: 4px;
  height: 24px;
  display: flex;
  align-items: center;
}
.label__header label {
  margin-right: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #242424;
}
.label__header svg {
  margin-right: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.is-open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}
.modal__container {
  position: relative;
  background: #d31616;
  border-radius: 18px;
  width: 100%;
  height: 800px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 900px) {
  .modal__container {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
}
.modal__back {
  box-sizing: border-box;
  width: 100%;
  background: #ffffff;
  padding: 16px;
}
.modal__header {
  box-sizing: border-box;
  width: 100%;
  background: #ffffff;
  padding: 16px 32px;
  border-bottom: solid 1px #f0f1f3;
  border-top: solid 1px #f0f1f3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.modal__step {
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.modal__step:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  vertical-align: middle;
  background-color: #9ca3af;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"><path d="m9 18 6-6-6-6"/></svg>') no-repeat center/contain;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"><path d="m9 18 6-6-6-6"/></svg>') no-repeat center/contain;
}
.modal__step.is-active {
  color: #6c5ce7;
}
.modal__content {
  background: #FFFFFF;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 32px;
  overflow: scroll;
}
.modal__footer {
  box-sizing: border-box;
  padding: 16px;
  width: 100%;
  background: #ffffff;
  border-top: solid 1px #f0f1f3;
}
.modal .title--add-modal {
  font-size: 18px;
  font-weight: 600;
  color: #242424;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
}

.btn {
  height: 32px;
  padding: 0;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  font-size: 16px;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
}
.btn svg {
  height: 16px;
  width: 16px;
}
.btn--miniature-primary, .btn--miniature-secondary {
  background: #F1F1F6;
  height: 32px;
  width: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--miniature-primary:hover, .btn--miniature-secondary:hover {
  background: #c3c7cf;
}
.btn--miniature-primary svg {
  color: #6c5ce7;
}
.btn--miniature-secondary svg {
  color: #242424;
}
.btn--primary {
  background: #6c5ce7;
  color: #ffffff;
}
.btn--primary svg {
  stroke: #ffffff;
}
.btn--primary:hover {
  background: #7c6fcd;
  color: #ffffff;
}
.btn--primary:hover svg {
  stroke: #ffffff;
}
.btn--secondary {
  border: solid 1px #242424;
  color: #242424;
}
.btn--secondary svg {
  stroke: #242424;
}
.btn--secondary:hover {
  background: #dfdfdf;
}
.btn--transparent {
  color: #6c5ce7;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn--transparent:hover {
  color: #7c6fcd;
}
.btn--no-label {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--has-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  padding-right: 12px;
}
.btn--history {
  margin-right: 8px;
}
.btn--add-user {
  margin-right: 8px;
}
.btn--edit {
  margin-right: 16px;
}
.btn--view svg {
  transition: transform 0.2s ease;
}
.btn--view.is-open svg {
  transform: rotate(180deg);
}
.btn--delete-user {
  width: 100%;
  border: solid 1px #F3313B;
  color: #F3313B;
}
.btn--delete-user svg {
  stroke: #F3313B;
}

@media (max-width: 750px) {
  .btn--has-label span {
    display: none;
  }
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 16px;
}

.card {
  height: 64px;
  background: #FFFFFF;
  border-top: solid 1px #F0F0F3;
  border-bottom: solid 1px #F0F0F3;
}
.card:nth-child(1) {
  border-top: none;
}
.card:hover {
  background: #FAFAFB;
}
.card td {
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card td:nth-child(1) {
  padding-left: 16px;
}
.card__subtext {
  display: block;
  margin-top: 0px;
  font-size: 10px;
  color: #A3A3AD;
}
.card__establishment-badge-database {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.card__establishment-badge-database::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.card__establishment-badge-database--not-created {
  color: #EF4444;
}
.card__establishment-badge-database--created {
  color: #F59E0B;
}
.card__establishment-badge-database--migrated {
  color: #6366F1;
}
.card__establishment-badge-payment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.card__establishment-badge-payment::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.card__establishment-badge-payment--paid {
  color: #48c522;
}
.card__establishment-badge-payment--late {
  color: #F59E0B;
}
.card__establishment-badge-payment--unpaid {
  color: #EF4444;
}
.card__establishment-owner-name {
  font-weight: 400;
}
.card__establishment-owner-mail {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card__establishment-count-users {
  padding-right: 8px;
}
.card__establishment-count-users .users-count {
  font-size: 10px;
}
.card__establishment-count-users .progress-bar__body {
  width: 100px;
  height: 8px;
  background: #EDEDF1;
  border-radius: 4px;
  overflow: hidden;
}
.card__establishment-count-users .progress-bar__bar {
  background: #A5A8F5;
  height: 100%;
}
.card__establishment-editer-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: right;
  margin-right: 16px;
}
.card__establishment-editer-actions div {
  background: #F1F1F6;
  height: 32px;
  width: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-details td {
  padding: 0;
  background: #FAFAFB;
}
.card-details__content {
  margin: 16px;
  border-radius: 18px;
  background: #FFFFFF;
  border: solid 1px #F0F0F3;
  overflow: hidden;
}
.card-details__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
.card-details__title {
  font-weight: 500;
  color: #242424;
  font-size: 16px;
}

.sub-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.sub-table th {
  text-align: left;
  font-weight: 500;
  color: #A3A3AD;
  font-size: 14px;
}
.sub-table td {
  box-sizing: border-box;
  height: 64px;
  border-top: 1px solid #F0F0F3;
  vertical-align: middle;
  background: #FFFFFF;
}
.sub-table td:nth-child(1) {
  padding-left: 16px;
}
.sub-table td:last-child {
  padding-right: 16px;
}
.sub-table td.status {
  text-align: right;
}
.sub-table td.status .status__wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sub-table td.status .status__wrap.is-locked {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.sub-table td.status .status__wrap .checkbox__body {
  gap: 0;
}
.sub-table .sub-card:hover td {
  background: #FAFAFB;
}
.sub-table .sub-card:nth-child(1) td {
  border-top: none;
}
.sub-table tr.is-disabled {
  opacity: 0.5;
}
.sub-table__role {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}
.sub-table__role--owner {
  background: #EEF0FF;
  color: #6366F1;
}
.sub-table__role--member {
  background: #F4F4F6;
  color: #6B7280;
}

.card__toggle-details .icon-open {
  display: none;
}
.card__toggle-details.is-open .icon-closed {
  display: none;
}
.card__toggle-details.is-open .icon-open {
  display: block;
}

.navbar {
  height: auto;
  width: 100%;
  padding: 0;
  margin: 0;
}
.navbar__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 8px;
}
.navbar__logo {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.navbar__logo span {
  font-weight: 300;
}
.navbar__user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__user span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.table-wrapper {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 32px;
}

.table-header {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding: 16px;
  background: #ffffff;
}

.table-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.table-body table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.table-body thead {
  background: #f9fafb;
  height: 32px;
  color: #A3A3AD;
}
.table-body thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f9fafb;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 #F0F0F3, inset 0 -1px 0 #F0F0F3;
}
.table-body th:nth-child(1) {
  width: 150px;
  padding-left: 16px;
}
.table-body th:nth-child(2) {
  width: 150px;
}
.table-body th:nth-child(3) {
  width: 250px;
}
.table-body th:nth-child(4) {
  width: 140px;
}
.table-body th:nth-child(5) {
  width: 112px;
}
.table-body th:nth-child(6) {
  width: 90px;
}

.table-footer {
  flex-shrink: 0;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #A3A3AD;
  border-top: 1px solid #F0F0F3;
  background: #f9fafb;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
}
.table-footer strong {
  margin-right: 4px;
}

body {
  background-color: #F1F1F4;
  padding: 0;
  margin: 0 32px;
  min-height: 100vh;
}
body main {
  display: block;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/*# sourceMappingURL=dashboard.output.css.map */
