@import "./tabs.css";
@import "./table.css";
@import "./registration.css";

.progress .RowFlex {
  align-items: center;
}

.progress .TableLink {
  width: auto;
  height: auto;
  display: inline-flex;
  flex: 0 1 content;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: var(--Primary600);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.252px;
}

.progress-list {
  padding-top: 16px;
  padding-bottom: 16px;
}

.progress-list li {
  padding-right: 16px;
}

/* override properties from registration.css*/ 
.Registration .RowFlex {
  gap: 24px;
}

.Registration .DropdownLayout {
  margin-right: unset;
}

/* override properties from index.css*/ 
.Button {
  height: 56px;
}

/* override properties from table.css*/ 
table {
  table-layout: fixed;  /*  Ensure the table width is fixed */
}


@media only screen and (max-width: 1200px) {
  .progress .DropdownLayout {
    width: auto;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .progress .DropdownLayout {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .progress .Button {
    width: 100%;
  }
}
