.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;
}
.order-history {
  margin: 20px;
}


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;
}

button {
  width: 100%;
  padding: 6px;
  background-color: #ccc;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

button:hover {
  background-color: grey;
}
.update-section {
  margin-top: 20px;
  text-align: right;
}

.update-section button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.update-section button:hover {
  background-color: #45a049;
}
  