@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.main-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 2rem;
  background-color: rgb(247, 244, 245);
  padding: 2rem;
}
.header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  padding: 1rem;
  background-color: white;
  position: sticky;
}
.icon-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  column-gap: 1rem;
}
.icon-text span {
  font-size: 28px;
  font-weight: 580;
}
.icon-text h3 {
  background-color: rgb(76, 76, 225);
  color: white;
  border-radius: 1000rem;
  padding: 1rem;
}

.summary-cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 1rem;
}
.card {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 1rem;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.card h4 {
  font-size: 1rem;
  font-weight: 400;
  color: gray;
}
.green-card {
  color: green;
}
.orange-card {
  color: orange;
}

.customer-snapshot-card {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 1.5rem;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.snapshot-title {
  color: gray;
}
.snapshot-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 1rem;
}
.snapshot-details p {
  color: gray;
}
.snapshot-details strong {
  color: black;
}

.main-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 1rem;
  padding: 2rem 1rem;
  background-color: white;
  border-radius: 1rem;
}
.main-content-title {
  width: fit-content;
  height: auto;
  font-size: 1.2rem;
  font-weight: 700;
}

.list-header {
  width: 100%;
  height: auto;
  display: flex;
  flex: 1 1;
  flex-direction: row;
  align-items: start;
  color: #222222;
  justify-content: space-between;
  column-gap: 2rem;
}
.order-table {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 1rem;
}
.data-row {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: start;
  column-gap: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0rem;
}
.cell {
  display: flex;
  flex: 1 1;
}
.blue {
  color: rgb(76, 76, 225);
  font-weight: 600;
}
.green {
  color: green;
  font-weight: 500;
  background-color: rgb(223, 244, 223);
  padding: 0.5rem 1rem;
  border-radius: 100rem;
}
.orange {
  color: orangered;
  font-weight: 500;
  background-color: rgb(242, 230, 207);
  padding: 0.5rem 1rem;
  border-radius: 100rem;
}
.red {
  color: red;
  font-weight: 500;
  background-color: rgb(242, 215, 215);
  padding: 0.5rem 1rem;
  border-radius: 100rem;
}

.list-footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
.showing {
  color: gray;
}
.list-footer button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  background-color: rgb(76, 76, 225);
  color: white;
}
.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  color: gray;
}
.active {
  color: white;
  background-color: rgb(76, 76, 225);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.customer-info-card {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 1.5rem;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.info-title {
  width: fit-content;
  height: auto;
  font-size: 1rem;
}
.info-card-details {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 1rem;
}
.info-item p {
  color: gray;
}
.info-item-black {
  width: 100%;
  height: auto;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
