<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --modal-radius: 30px;
}

.modal-button{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 20px 0px 20px 0px;
    border: none;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    font-size: 18px;
    background-color: var(--green-dark);
}

#modal-inner-content{
    padding: 0px 75px 0px 75px;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;

    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    fill: white;
    color: white;
}

/* Modal Content */
.modal-content {
    background-color: var(--green-bright);
    text-align: center;
    margin: auto;
    border: 1px solid #888;
    font-size: 18px;
    width: 60%;
    border-radius: var(--modal-radius);
}
#modal-tree-container{
    background-color: #2e5b3f99;
}
#about-content{
    width: 80% !important;

}
#about-modal-inner-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

a:-webkit-any-link{
    color: white;
}
#created-by{

}

span.close{
    text-align: right !important;
}
/* The Close Button */
.close-button {
    width: 32.9%;
    border-radius: 0px  0px 0px var(--modal-radius);
}
.reset-button {
    width: 32.9%;
    border-radius: 0px 0px 0px 0px;
}
.plant-button {
    width: 32.9%;
    border-radius: 0px 0px var(--modal-radius) 0px;
}

.ok-button {
    width: 99.7%;
    border-radius: 0px 0px var(--modal-radius) var(--modal-radius);
}
.change-route-button {
    width: 49.7%;
    border-radius: 0px 0px var(--modal-radius) 0px;
}
.next-route-button {
    width: 49.7%;
    border-radius: 0px 0px 0px var(--modal-radius);
}
.ok-button:hover,
.reset-button:hover,
.change-route-button:hover,
.next-route-button:hover,
.close-button:hover,
.plant-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


</pre></body></html>