/* styles.css - Modern Look */
body {
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1200px;
}

.plant {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.plant:hover {
    transform: scale(1.05);
}

svg {
    animation: grow 2s ease-in-out;
}

@keyframes grow {
    from { transform: scale(0.8); opacity: 0.5; }
    to { transform: scale(1); opacity: 1; }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .row > div {
        margin-bottom: 20px;
    }
}