#wtw-garden-list table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
#wtw-garden-list th,
#wtw-garden-list td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  word-wrap: break-word; /* Enable line wrapping */
}
#wtw-garden-list th {
  background-color: #f2f2f2;
}

#wtw-add-garden-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}
#wtw-add-garden-form p {
  margin-bottom: 15px;
}
#wtw-add-garden-form label {
  font-weight: bold;
}
#wtw-add-garden-form input[type="text"],
#wtw-add-garden-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#wtw-add-garden-form button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#wtw-add-garden-form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
#wtw-add-garden-form button#check-postcode-button {
  background-color: #008cba;
  margin-top: 10px;
}

#manage-your-gardens h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
}

.help-text {
  font-size: 0.9em;
  color: #555;
}

@keyframes highlight {
  from {
    background-color: yellow;
  }
  to {
    background-color: transparent;
  }
}

.highlight {
  animation: highlight 2s ease-out;
}
