body {
  background-color: #edf6f1;
  color: #152f2a;
  font-family: 'Source Sans Pro', sans-serif;
}

.plan-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-form-title {
  color: #28a745;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  color: #152f2a;
  font-weight: bold;
}

.form-control {
  border: 1px solid #28a745;
  border-radius: 4px;
  padding: 10px;
}

.form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-primary {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-primary:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.card {
  border: 1px solid #28a745;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card:hover .plan-card {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-title {
  color: #28a745;
}

.list-group-item {
  border-color: #28a745;
}

.text-primary {
  color: #28a745 !important;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* Gallery preview styles */
#gallery-preview {
  margin-top: 10px;
}

.gallery-image {
  position: relative;
  display: inline-block;
}

.gallery-image img {
  border: 1px solid #28a745;
  border-radius: 4px;
  padding: 2px;
}

.delete-image-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.delete-image-btn:hover {
  opacity: 1;
}

.delete-image-btn span {
  position: relative;
  top: -1px;
}