.container {
  display: flex;
  min-height: 100vh;
}


.main-content {
  width: 80%;
  padding: 20px;
}

header h1 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: right;
}

hr {
  margin-bottom: 20px;
}
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;
}

