h2 {
    color: #333;
    background-color: #f4f4f4;
    padding: 10px;
    margin: 0;
    text-align: left;
    text-decoration: underline;
    font-size: 2em;
}
h3 {
    color: #333;
    background-color: #f4f4f4;
    margin: 10px 20px;
    text-align: left;
    font-size: 1.5em;
    text-decoration: underline;
}
h4 {
    color: #333;
    margin: 10px 35px;
    text-align: left;
    font-size: 1.25em;
    text-decoration: underline
}
h5 {
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    text-align: left;
    font-size: larger;
    text-decoration: underline;
}
pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
    display: flex;
    align-items: center; /* Align content vertically */
    flex-direction: row;
    width: 85%;
}
code {
    width: 92%;
    max-width: 92%;
    white-space: pre-wrap;
    word-wrap: break-word;
    align-self: flex-start;
}
#disclaimer {
    padding: 10px;
    margin: 0;
    align-items: center;
    text-align: center;
}
#disclaimer h3 {
    margin: 10px
}
#disclaimer p {
    color:darkred;
}
.important {
    color: darkred;
    text-decoration: underline;
    margin: 2px 45px;
}
.hint {
    font-style: italic;
    margin: 2px 60px;
    font-weight: light;
    font-size: .75em;
}
.tool-tag {
    width: 3em;
    align-self: flex-start;
}
.topic {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.topicTitle {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.topicBTN {
    width: 40px;
    height: 40px;
    padding: 5px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    text-align: center;
}
.language-powershell {
    background-color: #012456;
    color: #fff;
}
.language-CMD {
    background-color: #0f0f0f;
    color: #fff;
}

.language-path {
    background-color: #b4b4b4;
    color: #000000;
}

.codeBlockGroup {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 30px;
    max-width: 100%;
}
.codeBlock {
    flex-direction: row;
    width: 100%;
    max-width: 70%;
}
.info {
    padding: 20px 30px;
    width: 80%;
    margin: 0;
    text-align: left;
}
.info pre {
    max-width: 77.5%;
}
.cmdEntry {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}
.hidden {
    display: none !important;
}
button {
    width: fit-content;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 2em;
}
.clipboardBTN {
    border: 2px solid black;
}
.exebtn {
    background-color: #f4f4f4;
    font-size: 1em;
    text-align: left;
    width: 100%;
}
.Letter {
    text-align: center;
    font-size: 2em;
}
.LetterName {
    text-align: center;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table td {
    border: 1px solid black;
}
td {
    padding: 10px;
}
td.exec {
    font-weight: bold;
}
td.exec:hover {
    cursor: pointer;
    text-decoration: underline;
}
td.exec.clicked {
    background-color: #ddd;
}
td.icon img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#execTable {
    margin: 0 30px;
    max-width: 90%;
}
/*style for smartphones*/
@media (max-width: 600px){
    .codeBlockGroup {
        padding: 5px;
    }
    pre {
        width: 100%;
        flex-direction: column;
    }
    .cmdEntry {
        padding: 10px;
    }
}
/*style for tablets and smartphones portrait*/
@media (max-width: 900px) {
    .codeBlockGroup {
        flex-direction: column;
    }
    .codeBlock {
        width: 100%;
        max-width: 100%;
        padding: 5px 0;
    }
}