body {
    margin: 0px;
    font-size: 14pt;
    font-family: 'RobotoMono', monospace;
}

#lightThemeContainer {
    background-color: #eee;
    color: #111;
}

#darkThemeContainer {
    background-color: #0F0F0F;
    color: #EEE;
}

#lightThemeContainer #viewDiv {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

#darkThemeContainer #viewDiv {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

#lightThemeContainer #pageHeader {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
    height: 64px;
    border-bottom: 2px solid #888;
}

#darkThemeContainer #pageHeader {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
    background-color: #181818;
    height: 64px;
}

#lightThemeContainer #bottomBar {
    background-color: #EEE;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #888;
}

#darkThemeContainer #bottomBar {
    background-color: #181818;
    height: 64px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#lightThemeContainer #serviceInfo {
    color: #111;
}

#darkThemeContainer #serviceInfo {
    color: #EEE;
}

div.contentTextContainer {
    text-align: center;
    display: flex;
    justify-content: center;
}

div.contentText {
    max-width: 600px;
    padding: 10px;
    text-align: justify;
}

#darkThemeContainer a {
    color: #4e9de7;
    text-decoration: none;
}

#darkThemeContainer a:hover {
    color: #7bb7ee;
    text-decoration: underline;
}

#lightThemeContainer a {
    color: #0c61b1;
    text-decoration: none;
}

#lightThemeContainer a:hover {
    color: #074279;
    text-decoration: underline;
}

a.header {
    font-size: 24pt;
    color: #FFF;
    text-decoration: none;
}

a.header:hover {
    color: #090;
    text-decoration: none;
}

.fontMono {
    font-family: 'Roboto Mono';
    font-weight: 200;
}

.contentDataParent {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-color-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    margin: 10px;
    cursor: pointer;
}

#darkThemeContainer .bottomButtonImage {
    opacity: 0.9;
    width: 48px;
    height: 48px;
}

#lightThemeContainer .bottomButtonImage {
    opacity: 0.8;
    width: 48px;
    height: 48px;
}

.bottomButtonImage:hover {
    opacity: 1;
}

html {
    scrollbar-color: #555 #2c2c2c;
    scrollbar-width: auto;
}

/* For WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 20px;
    height: 20px;
}

::-webkit-scrollbar-track {
    background-color: #2c2c2c;
}

::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}


button.bottomButtons {
    background-color: #00000000;
    color: #aaa;
    font-size: 24pt;
    border: 0px solid #000;
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 0px;
}

button.bottomButtons:hover {
    color: #5ee86e;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: rgb(36, 117, 36);
    cursor: pointer;
}

#darkThemeContainer .btn {
    color: #FFF;
    background: #00A0E3;
}

#darkThemeContainer .btn:hover {
    color: #FFF;
    background: #50A0E3;
}

#lightThemeContainer .btn {
    color: #FFF;
    background: #00A0E3;
}

#lightThemeContainer .btn:hover {
    color: #FFF;
    background: #50A0E3;
}

.textPage {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    border-left: 1px solid #888;
    min-height: 400px;
    padding: 20px;
    background-color: #333333;
}

.code_with_scrilling {
    max-height: 500px;
    overflow: auto;
    border: 1px solid #888;
    padding: 10px;
    max-width: calc(100% - 20px);
}