body {
    font-family: "Maitree", serif;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    background-color: #E4F3E5;
}


* {
    box-sizing: border-box;
}

#navBar {
    overflow: hidden;
    background-color: #333;
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;    
    flex-direction: row;
    justify-content:center;
    z-index: 1;
}

#navLink {
    a {
        color: white;
        text-align: center;
        padding: 12px 16px;
        text-decoration: none;
    }

    a:hover {
        background-color: #111;
    }
}

#container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

#treeContainer strong {
    color: #2c7a7b;
}

#noteFormContainer {
    margin-bottom: 20px;
    width: 100%;
    display: none;
}

#noteFormContainer iframe {
    width: 100%;
    height: 573px;
}

#canvasContainer {
    position: relative;
    padding: 10px;
}

#orchardCanvas {
    width: 100%;
    height: auto;
}

#treeContainer,
#canvasContainer {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
}

#treeContainer {
    font-size: 14px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
}

#treeImage, 
#treeImageNight {
    width: 100%;
    padding: 10px;
}

.noteTag {
    width: fit-content;
    padding: 5px;
    border-radius: 30px;
    background-color:#74d48c;
    border:none;
    color:white;
    text-align: center;
}


.button {
    border-radius: 4px;
    background-color: green;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 24px;
    padding: 15px;
    width: 80%;
    transition: all 0.5s;
    cursor: pointer;
    margin: auto;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

@media (max-width: 800px) {
    #container {
        flex-direction: column;
    }

}