.main {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a3a1e 0%, #2c5530 50%, #1a3a1e 100%);
  background-attachment: fixed;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 100;
}

.header h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.backButton {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 100;
  pointer-events: auto;
}

.backButton:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.loading {
  text-align: center;
  color: #c8e6c9;
  font-size: 1.2rem;
  padding: 60px 20px;
}

.emptyState {
  text-align: center;
  color: #c8e6c9;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.emptyState p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.shopButton {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.shopButton:hover {
  background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
  transform: translateY(-2px);
}

.ordersList {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.orderCard {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.orderHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.orderHeader h2 {
  color: #ffffff;
  margin: 0 0 5px 0;
  font-size: 1.5rem;
}

.orderDate {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.orderItems {
  margin-bottom: 20px;
}

.orderItems h3 {
  color: #c8e6c9;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
}

.itemsTable {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  overflow: hidden;
}

.itemsTable thead {
  background: rgba(255, 255, 255, 0.1);
}

.itemsTable th {
  padding: 12px;
  text-align: left;
  color: #c8e6c9;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.itemsTable td {
  padding: 12px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.itemsTable tbody tr:last-child td {
  border-bottom: none;
}

.orderNotes {
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  margin-bottom: 20px;
  color: #c8e6c9;
}

.orderNotes strong {
  color: #ffffff;
}

.orderFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.orderTotal {
  color: #66bb6a;
  font-size: 1.5rem;
  font-weight: 600;
}

.reviewButton {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.reviewButton:hover {
  background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .orderHeader {
    flex-direction: column;
    gap: 15px;
  }
  
  .orderFooter {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

