* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: black;
    color: antiquewhite;
    display: grid;
    place-items: center;
}
.header-title-container {

    padding: 1rem;
}
section.control-panel {
    display: grid;
    place-items: center;
    max-width: 100%;
    padding: 1rem;
    background-color: rgba(33, 33, 33, 1);
    border: solid blanchedalmond 3px;
    border-radius: 1.5rem;
}
section.control-panel div.buttonbar {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 0.5rem;
}
#content-panel-main {
    margin-top: 5dvh;
    border: solid blanchedalmond 3px;
    min-width: 50%;
    min-height: 400px;
    border-radius: 15px;
    background-color: rgb(53, 53, 53);
}
.buttonbar .htmx-button {
    background-color: rgb(53, 53, 53);
    color: antiquewhite;
    border: solid blanchedalmond 0.053rem;
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-align: center;
    max-width: 12ch;
    font-weight: 600;
}
.buttonbar .htmx-button:hover {
    color: black;
    background-color: magenta;
    border: solid black 0.053rem;
    outline: solid 2px magenta;
}
.buttonbar .selected {
    background-color: blanchedalmond;
    color: black;
    text-shadow: 1px 1px 2px rgba(13, 13, 13, 0.5);
    border: solid black 0.053rem;
    outline: solid 5px rgba(255, 102, 0, 1);
}
.buttonbar .selected:hover {
    background-color: orange;

}
.nav-container {
    display: grid;
    place-items: center;
    background-color: rgb(53, 53, 53);
    padding: 2rem;
    border-radius: .75rem;
    grid-template-rows: 5dvh 1fr;
    gap: .75rem;
    margin-top: 0.5rem;
}
.nav-title-container {
    padding: 0;
}
.nav-link-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    gap: 0.5rem;
    width: 100%;
    place-items: center;
}
.nav-link {
    text-decoration: none;
    color: antiquewhite;
    background-color: rgb(23, 23, 23);
    width: 96%;
    max-width: 100%;
    padding: 0.5rem 1.5rem;
    border: solid blanchedalmond 0.053rem;
    border-radius: 1.5rem;
    text-align: center;
    text-wrap: nowrap;
}
.coming-soon {
    color: rgba(100, 100, 100, 0.5);
}
.nav-link:hover {
    color: black;
    background-color: magenta;
    border: solid black 0.053rem;
}