body {
  background-color: #edf6f1;
  color: #152f2a;
  font-family: 'Source Sans Pro', sans-serif;
}

.delivery-show-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.delivery-info-card,
.order-details-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

.page-title {
  color: #28a745;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-title {
  color: #28a745;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item strong {
  color: #495057;
}

.status-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-badge.bought {
  background-color: #28a745;
  color: white;
}

.status-badge.pending {
  background-color: #ffc107;
  color: #212529;
}

.plan-delivery-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan-name {
  color: #28a745;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-description {
  color: #6c757d;
  margin-bottom: 1rem;
}

.plan-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calories-badge,
.delivery-date {
  display: flex;
  align-items: center;
  color: #495057;
  font-size: 0.875rem;
}

.calories-badge i,
.delivery-date i {
  margin-right: 0.5rem;
  color: #28a745;
}

.alternatives-title {
  color: #28a745;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.alternatives-list {
  list-style-type: none;
  padding: 0;
}

.alternative-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.alternative-item:last-child {
  border-bottom: none;
}

.alternative-question {
  color: #495057;
  font-weight: 600;
}

.alternative-answer {
  color: #6c757d;
}

.price-variation {
  color: #28a745;
  font-weight: 600;
}

.no-alternatives {
  color: #6c757d;
  font-style: italic;
}

@media (max-width: 576px) {
  .plan-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .calories-badge,
  .delivery-date {
    margin-bottom: 0.5rem;
  }

  .alternative-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .alternative-question,
  .alternative-answer,
  .price-variation {
    margin-bottom: 0.25rem;
  }
}