body {
  background-color: #edf6f1;
  color: #152f2a;
  font-family: 'Source Sans Pro', sans-serif;
}

.plan-show-container {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.main-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.thumbnails {
  margin-top: 1rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.thumbnail:hover {
  border-color: #28a745;
  transform: scale(1.05);
}

.tags-section {
  margin: 1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap; /* Ensures tags wrap to the next line if they don't fit */
  gap: 0.5rem; /* Adds spacing between tags */
}

.tag-badge {
  background-color: #28a745;
  color: white;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.plan-details h1 {
  color: #152f2a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price-tag {
  font-size: 2rem;
  color: #28a745;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

#delivery_date {
  width: 100%; /* Full width */
  max-width: 300px; /* Optional: Set a maximum width */
}

.plan-info-section {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.section-title {
  position: relative;
  color: #152f2a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #28a745;
}

.plan-content-list {
  list-style: none;
  padding: 0;
}

.plan-content-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.plan-content-list li:last-child {
  border-bottom: none;
}

.form-select {
  border: 1px solid #28a745;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-select:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-add-cart {
  background-color: #28a745;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-add-cart:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.toggle-btn {
  display: inline-block;
  color: #28a745;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #delivery_date {
    max-width: 100%; /* Adjust for smaller screens */
  }
}