body {
  background-color: #edf6f1;
  color: #152f2a;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.6;
}

.purchased-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.purchased-title {
  color: #28a745;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
}

.order-details, .delivery-address {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #28a745;
  margin-bottom: 20px;
  font-size: 1.8em;
  border-bottom: 2px solid #28a745;
  padding-bottom: 10px;
}

.table-responsive {
  overflow-x: auto;
}

.order-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.order-table th, .order-table td {
  padding: 12px;
  text-align: left;
}

.order-table th {
  background-color: #28a745;
  color: #ffffff;
  font-weight: bold;
}

.order-table tr:nth-child(even) {
  background-color: #f0f8f1;
}

.order-table tr:hover {
  background-color: #e8f5e9;
}

.address-details p {
  margin: 10px 0;
  font-size: 1.1em;
}

.address-details strong {
  color: #28a745;
}

.btn-primary {
  display: inline-block;
  background-color: #28a745;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .purchased-container {
    padding: 10px;
  }

  .purchased-title {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .order-table th, .order-table td {
    padding: 8px;
  }

  .address-details p {
    font-size: 1em;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}