* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Mono';
}

.my-hyperlinks {
    color : blue !important;
    text-decoration: underline;
}

.my-hyperlinks:visited {
    color : purple !important;
}

.my-hyperlinks:hover {
    color : red !important;
}

h2 {
    font-style: normal;
    font-size: 20px;
}

p {
    font-size: 100%;
    line-height: 20px;
    font-size: 13px;
}

ul {
    font-size: 100%;
    line-height: 23px;
    font-size: 13px;
    padding-left: 25px;
}

li {
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 5px;
    margin: -8px;
}

img {
    width: 100px;
    height: 100px;
}

pre {
    white-space: pre-wrap;
}

body {
    height: 100%;
    display: flex;
    justify-content: center;
}

.header-container {
    flex-grow: 1;
    background-color: #ffffff;
}

.bottom-container {
    display: flex;
    flex-direction: row;
}

.header {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-title {
    /* moving the social and subscribe buttons to the bottom of the header */
    font-weight: italic;
    font-size: xx-large;
    font-weight: italic;
    text-align: center;
}

.header-button:link,
.header-button:visited {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
}

.header-button:hover,
.header-button:visited:hover
{
    color: #FFF;
    background-color: #000000;
}

.main-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cad-left-panel {
    display: flex;
    flex-direction: column;
    width: 0px;
    align-items: flex-end;
}

.webcad-description-container {
    width: 350px;
    height: 502px;
    margin-top: 10px;
    border: 1px dashed black;
    border-right: 1px dashed black;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-right: 10px;
    justify-items: center;
}

.webcad-description-sub-container {
    background-color: #ededed;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    margin: 10px;
    height: 96%;
}

.webcad-description-text-container::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }

.webcad-description-text-container::-webkit-scrollbar-thumb {
    background: darkgray;
    border-radius: 0px;
  }

.webcad-description-text-container::-webkit-scrollbar-thumb:hover {
    background: rgb(121, 121, 121); 
  }

.cad-left-buttons-top-spacer {
    height: 30px;
}

.cad-right-panel {
    display: flex;
    flex-direction: row;
}

.lower-container {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.top-cad-buttons-main {
    display: flex;
    flex-direction: row;
    justify-content: left;
    height: 30px;
}

.top-cad-buttons-submain {
    display: flex;
    flex-direction: column;
    height: 30px;
}

.top-cad-buttons-container {
    display: flex;
    background-color: white;
    height: 30px;
}

.cad-main-content-container {
    display:flex;
    flex-direction: row; 
}

.right-content-panel-main {
    display: flex;
    flex-direction: column;
    justify-content: left;
    height: 1000px;
}

.cad-content-container {
    /* width: 702px; */
    /*width: 902px;*/
    /* height: 502px; */
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 2px;
    border-style: solid;
    border-width: 1px;
}

.button {
    margin-bottom: 13px;
    display: flex;
    width: 100px;
    height: 100px;
    background-color: #6b6b6b;
    text-align: center;
}

.button:link,
.button:visited
{
    color: white;
    text-decoration: none;
    align-items: center;
}

.button:hover,
.button:visited:hover
{
    color: #FFF;
    background-color: #000000;
    transition-property: -webkit-transform, -webkit-transform;
    transition-duration: 0.1s, 0.1s;
    transition-timing-function: ease-out, ease-in;
    transition-delay: 0, 0;
    transform: scale(1.06);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.37);
}

.cad-content-explainer-main {
    display: flex;
    justify-content: left;
    border: 1px dashed;
    /* height: 500px;
    width: 702px; */
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 15px;
    background-color: #ededed;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.commands {
    padding: 5px;
    position: absolute;
    right: 1%;
    top: 2%;
    height: 65px;
    width: 180px;
    border-radius: 5px;
    border: 2px solid #f7941e;
    opacity: 0.7;
    font-family: Arial;
    background-color: #414042;
    color: #ffffff;
    font-size: 14px;
    opacity: 0.5;
}