body,
html {
  margin: 0;
  height: auto;
  font-family: "Ubuntu";
  font-size: 14px;
  color: #454545;
  background-color: rgb(240, 240, 240);
  --font-standard: "Ubuntu";
  --font: "Ubuntu Condensed";
  --main-color: #e57200;
  --main-color-transparent: rgba(229, 114, 0, 15%);
}

#maincontent {
  margin-top: 50px;
  margin-bottom: 50px;
}

.main_wrapper {
  display: flex;
  margin: 0 auto;
  width: 1200px;
  min-height: 100%;
  height: auto;
  box-shadow: 0px 0px 8px #888888;
  background-color: white;
}

.navbar {
  flex: 0;
  box-sizing: border-box;
  min-width: 225px;
  max-width: 225px;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: auto;
  padding: 25px;
  background-color: black;
  color: white;
  font-size: 16px;
  line-height: 40px;
}

.navbar header {
  margin-top: 50px;
  font-size: 26px;
  font-family: var(--font);
  text-align: center;
  color: var(--main-color);
  margin-top: 25px;
  margin-bottom: 75px;
}

#navmenu li {
  padding-left: 0;
}

#navmenu {
  all: unset;
  list-style-type: none;
}

#navmenu .submenu {
  padding-left: 15px;
}

#navmenu .navlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5px;
}

.navlist:hover {
  cursor: pointer;
  background-color: var(--main-color);
}

.navlist.active {
  background-color: var(--main-color);
}

.notify {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 10px;  
    border-radius: 90%;
    background-color: var(--main-color);
    border: 2px solid white;
}

.contentarea {
  width: 100%;
  padding: 75px 50px;
}

h1 {
  font-size: 30px;
  color: var(--main-color);
  font-weight: bolder;
  margin: 0;
}

h2 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: bold;
  margin: 0;
}

h3 {
  color: var(--main-color);
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

h4 {
  color: var(--main-color);
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

h5 {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

.pageheader,
.section {
  padding: 25px;
}

.introtext {
  font-size: 18px;
  font-style: italic;
  line-height: 30px;
}

.pagesearch {
  padding: 25px 50px;
}

#search {
  height: 25px;
  width: 100%;
}

.search {
  border-color: var(--main-color-transparent);
}

.searchlabel {
  line-height: 25px;
}

.addnewstudent {
  display: flex;
  box-sizing: border-box;
  height: 50px;
  margin: 0 25px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--main-color-transparent);
}

input {
  font-size: 16px;
  font-family: "Ubuntu";
  border-top-style: hidden;
  border-right-style: hidden;
  border-left-style: hidden;
  border-bottom-style: solid;
}

input:focus {
  outline: none;
}

.pagecontent {
  padding: 50px;
}

.pagedate {
  text-align: right;
}

.table {
  display: flex;
  flex-direction: column;
}

.tablehead {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--main-color);
}

.tablehead div {
  display: flex;
  align-items: center;
  width: 175px;
  height: 50px;
}

.tablebody {
  display: flex;
  flex-direction: column;
}

.bold {
  font-weight: bold;
}

.tablerow {
  display: flex;
  justify-content: space-between;
  min-height: 50px;
  line-height: 1.5em;
  border-bottom: 2px solid var(--main-color-transparent);
}

.tablerow:last-child {
  border-bottom: 2px solid var(--main-color);
}

.tablerow div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px 5px;
  width: 175px;
}

.tablerow div p {
  width: 175px;
  margin: 0;
}

.tablerow:hover {
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
}

.tablecount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 50px;
}

.tablecount p {
  font-weight: bold;
}
