main {
  font-family: Arial, sans-serif;
  
  display: flex;               /* Enable flexbox */
  justify-content: center;      /* Horizontally center */
  align-items: center;          /* Vertically center */                /* Set height to viewport height */
  text-align: center;           /* Center text */
}


.container {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

h2 {
  text-align: center;
  color: #333;
}

.info-row {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

label {
  width: 150px;
  font-weight: bold;
}

.info {
  flex: 1;
  padding: 8px;
  background: #f9f9f9;
  border: 1px solid #ddd;
}


.order-history {
  margin: 20px;
}

.order-history h2 {
  text-align: center;
  font-size: 24px;
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th, table td {
  border: 1px solid #000;
  padding: 10px;
  text-align: left;
}

table th {
  background-color: #f2f2f2;
}

