body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #5cb85c; /* A nice green color */
    text-align: center;
    margin-bottom: 20px;
}

#add-plant-section, #plant-list-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="number"],
textarea {
    width: calc(100% - 12px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: #5cb85c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #4cae4c;
}

#plant-list {
    list-style: none;
    padding: 0;
}

#plant-list li {
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; /* Add a pointer cursor to indicate it's clickable */
}

#plant-list li span {
    flex-grow: 1;
    margin-right: 10px;
}

.plant-actions button {
    background-color: #d9534f; /* Red color for delete */
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
}

.plant-actions button:hover {
    background-color: #c9302c;
}

.plant-actions .view-btn {
    background-color: #007bff; /* Blue color for view */
}

.plant-actions .view-btn:hover {
    background-color: #0056b3;
}

#plant-details-section {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#plant-details h2 {
    color: #5cb85c;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left; /* Align heading to the left within this section */
}

#plant-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

#plant-details strong {
    font-weight: bold;
    margin-right: 5px;
}