html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15%;
    padding-right: 15%;
    height: 100%;
    font-family: sans-serif;
    font-size: medium;
    background-color: #000000;
    color: #171717;
}

h2 {
    color: #171717;
    text-shadow: #3b3b3b 0px 0px 5px;
}

p {
    margin: 0;
    padding: 0;
}

a {
  outline: none;
  text-decoration: none;
  padding: 0;
}

a:link {
    color: black;
}

a:visited {
  color: black;
}

.head_link:link {
    color: #cbcbcb;
}
.head_link:visited {
    color: #cbcbcb;
}

.main {
    margin: 0;
    padding: 0;
    height: 100%;
}

.header {
    margin: 0;
    padding: 0;
    /*background-color: #3d3d3d;*/
    background: repeating-linear-gradient(-45deg, #3d3d3d 0, #3d3d3d 3px, #282828 3px, #282828 5px);
    display: flex;
    flex-direction: row;
    box-shadow: 0px 15px 5px black;
}

.logo {
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    margin-left: 20px;
    margin-right: 30%;
    background-color: #a2a2a2;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
}

.header_inner {
    display: flex;
    margin: 8px;
    padding: 0;
    background-color: #2a2a2a;
    color: #cbcbcb;
    border-bottom: 1px solid #a2a2a2;
    border-radius: 5px;
    box-shadow: -1px -1px #252525;
    justify-content: center;
    align-items: center;
    /*text-align: center;*/
}

#left_header_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 70%;
    margin-right: 4px;
}

#right_header_inner {
    height: 80px;
    width: 30%;
    margin-left: 4px;
}

.warning {
    color: #ff6c6c;
    text-shadow: #FC0 1px 0px 15px;
}

.username_header {
    color: white;
    text-decoration: underline;
    text-decoration-style: double;
}

.header_text {
    text-align: center;
}

.content {
    height: 720px;
    margin: 0;
    padding: 8px;
    /*padding-bottom: 50px;*/
    /*background-color: #F3D2D2;*/
    background-color: #267000;
    /*background-color: #2e8100;*/
    border-top: 1px solid black;
    box-shadow: inset 0px 10px 20px #0d2c00;
}

.navigation {
    margin: 0;
    padding: 0;
    /*background-color: #3d3d3d;*/
    display: flex;
    flex-direction: row;
}

.tab {
    display: flex;
    height: 60px;
    width: 150px;
    margin-right: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0px 0px;
}

#tab_active {
    background-color: #a2a2a2;
    border: 1px solid #c9c9c9;
    border-bottom: 0;
    box-shadow: inset 0px 5px 5px 0px #e8e8e8;
    font-weight: bold;
}

#tab_inactive {
    background-color: #575757;
    border: 1px solid #2c2c2c;
    border-bottom: 0;
    box-shadow: inset 0px 5px 5px 0px #333333;
}


.page {
    height: 88%;
    border: 1px solid #c9c9c9;
    border-radius: 0 10px 10px 10px;
    padding: 10px;
    background-color: #a2a2a2;
    box-shadow: inset 0px 0px 5px 0px #e8e8e8;
    align-items: center;
    text-align: center;
}

.notes_list {
    height: 80%;
    width: 98%;
    padding: 5px;
    background-color: #888888;
    border: 1px solid #484848;
    box-shadow: inset 0 0 1px 0px #383838;
    overflow: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.row_container {
    display: flex;
    height: 30px;
    width: 100%;
    margin-bottom: 5px;
    align-items: center;
    background-color: #e1e1e1;
    border: 1px solid #4b4b4b;
    border-radius: 5px;
    box-shadow: 0px 0px 1px 1px #252525;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.row_cell1 {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    /*border: 1px solid black;*/
    text-align: left;
}.row_cell2 {
    width: 30%;
    /*border: 1px solid black;*/
}
.row_cell3 {
    width: 10%;
    /*border: 1px solid black;*/
}
.row_cell4 {
    width: 10%;
    /*border: 1px solid black;*/
}