
html, body {
    box-sizing: border-box;
    width: 100%;
    height: 100%;

    margin: 0px;

    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;

    background-color: rgb(245, 245, 245);
}

p {
    margin: 0px;
    /* cursor: default; */
}

hr {
    border: none;
    border-top: 2px solid #444;
    margin: 15px 0;
}

#PageTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;

    font-size: 20px;
    font-weight: bold;
    font-family: "Noto Sans", sans-serif;

    color: rgb(255, 255, 255);
    background-color: rgb(100, 100, 255);
}

.SideBar {
    height: 100%;
    width: 220px;

    /* background-color: rgb(210, 210, 255); */
    background-color: rgb(45, 45, 45);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.SideBarButton, .SideBarButtonSelected {
    display: flex;
    /* align-items: center; */
    justify-content: left;
    box-sizing: border-box;
    padding: 5px 0px 5px 10px;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.SideBarButtonSelected {
    background-color: rgb(245, 245, 245);
    color: rgb(45, 45, 45);
}

.SideBarButton:hover {
    background-color: rgb(65, 65, 65);
}

.DownloadButton {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    background-color: rgb(100, 100, 255);
    padding: 10px 15px 10px 15px;
    box-sizing: border-box;

    width: 170px;

    font-family: "Noto Sans", sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;

    margin-bottom: 15px;
}

.DownloadButton:hover {
    background-color: rgb(70, 70, 255);
}

.DocsMain {
    width: calc(100% - 220px);
    height: 100%;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    box-sizing: border-box;

    padding: 30px 30px 30px 30px;
}

.CommandBox {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    align-items: center;

    background-color: rgb(40, 40, 40);
    padding: 10px 20px 10px 20px;
    justify-content: space-between;

    margin: 7px 0px 7px 0px;
}

.Command {
    font-family: "Source Code Pro", monospace;
    color: rgb(240, 240, 240);
}

.CopyButton {
    color: rgb(240, 240, 240);
    font-family: "Noto Sans", sans-serif;
    font-weight: bold;
    cursor: pointer;
}

.CopyButton:hover {
    color: rgb(150, 255, 150);
}

.ApiBox {
    display: flex;
    flex-direction: row;
}

.ApiBoxTitle {
    width: 40%;
}
.ApiBoxText {
    width: 60%;
}

.Code {
    font-family: "Source Code Pro", monospace;
}

.CodeBold {
    font-family: "Source Code Pro", monospace;
    font-weight: bold;
}

.WarningBox {
    background-color: rgb(255, 90, 90);
    box-sizing: border-box;
    padding: 20px 20px 20px 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    font-family: "Noto Sans", sans-serif;
}

.WarningBoxTitle {
    color: rgb(255, 255, 255);
    font-size: 25px;
    font-weight: bold;
}

.WarningBoxText {
    color: rgb(255, 255, 255);
    font-size: 16px;
}