body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f5f5f5;
}

h1 {
    color: #333;
    text-align: center;
}

h2 {
    color: #777;
    text-align: center;
    font-size: 1rem;
}

.input-container {
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
}

#street-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

#street-input:focus {
    outline: none;
    border-color: #567112;
}

#leaf-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    justify-items: center;
    align-items: center;
}

svg.leaf {
    width: 80px;
    height: 80px;
}