body {
    font-family: 'Lalezar', sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    font-size: 1.5em;
    padding: 20px;
}

button {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 20px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s ease;
    font-size: 1.0em
}

button:hover {
    background-color: #45a049; /* Darker green on hover */
}


#gridContainer {
    border: 2pt solid black;
    width: fit-content;
    margin: auto;
    padding: 5px;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 40px); /* 5 cells for 5m width */
    grid-template-rows: repeat(5, 40px); /* 5 cells for 5m height */
    gap: 2px;
    background-color: #90ee90; /* Green background for soil */
}

.cell {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.cell.tree.tree1 {
    background-color: #000000; /* Black for Tree 1 */
}

.cell.tree.tree2 {
    background-color: #808080; /* Grey for Tree 2 */
}

.cell.tree.tree3 {
    background-color: #FFFF00; /* Yellow for Tree 3 */
}

.button-selected {
    background-color: #555; /* Darker background for selected */
    color: #fff;
}

.cell.selected {
    border: 2px solid red;
}

#treeInfoBox {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    display: none;
}
#returnButton {
    /* Styles similar to other buttons in your application */
    background-color: #4CAF50; /* Example color */
    color: white;
    /* ... other styles ... */
}