:root {
    --default: rgb(24, 58, 83);
    --accented: rgb(0, 168, 181);
    --light: white;
    --dark: black;
}

html, body {
    padding: 0;
    margin: 0;
    text-align: center;
}

#Container {
    max-width: 1800px;
    margin: 0 auto;
}

#Header {
    background-color: var(--default);
    background-image: url("../images/9A-ZAG.svg");
    background-position: left center;
    background-repeat: no-repeat;
    height: 80px;
}

#Tree {
    border: solid 1px red;
    padding: 20px;
    max-width: 500px;
    min-height: 200px;
}

#Tree div {
    margin-left: 20px;
    border: solid 1px gray;
    border-radius: 5px;
    padding: 5px;
}

#Tree button {
    width: 100%;
    text-align: left;
}

.TreeButton {
    display: flex;
    gap: 10px;
    border: none;
    background-color: white;
    cursor: pointer;
    padding: 3px;
}

.TreeButton:hover {
    background-color: gainsboro;
}

.TagName {
    background-color: orangered;
    color: white;
    border-radius: 5px;
    display: inline-block;
    padding: 2px 5px;
}

.TextContent {
    background-color: gainsboro;
    color: orangered;
    border-radius: 5px;
    display: inline-block;
    padding: 2px 5px;
}