@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

:root {
  --background-main: #1f1f1f;
  --background-content: #2d2f31;
  --content-hover: #004a77;
  --button-click: #005d97;
  --button-hover: #393c3c;
  --text-color: #c4c7c5;
  --text-color-hover: #c2e7ff;
}

* {
    font-family: 'Lato', sans-serif;
    user-select: none;
}


a{
  color: inherit;
  text-decoration: none;
}
body {
  font-family: Arial, sans-serif;
  background-color: var(--background-main);
  color: var(--text-color);
}

.container {
  max-width: auto;
  padding: 20px;
  display: inline-block;
  width: 98%;
}
main {
  margin-left: 200px;
  padding: 20px;
  background-color: var(--background-content);
  border-radius: 25px;
  min-height: 89vh;
  max-height: 89vh;
  width: auto;
}

/* Style the side navigation */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 10px;
  overflow-x: hidden;
  max-height: 95vh;
}
.context-menue {
  padding:10px;
  border-radius: 15px;
  background-color: var(--background-main);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.5);
}
#sidebar-icon {
    height: 75px;
    width: auto;
}

.icon-li {
  font-size: 20px !important;
  padding:10px;
  border-radius: 20px; 
  padding-top: 8px;
}

.sidebar-list {list-style-type: none; margin: 0px; padding: 0px;}
.icon-li:hover {background-color: var(--content-hover); color: var(--text-color-hover);}
.material-symbols-rounded {position: relative; left: 0; transform: translateY(18%); margin-right: 10px;}


@media screen and (max-width: 1000px) {
  .col {
    width: 100%;
  }
}

.col {
  float: left;
}

.w-33 {width: 33%;}
.w-30 {width: 30%;}
.w-66 {width: 66%;}
.w-25 {width: 25%;}
.w-80 {width: 80%;}
.w-40 {width: 40%;}
.w-50 {width: 50%;}
.w-20 {width: 66%;}
.w-12-5 {width: 12.5%;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row {padding-bottom: 5px;}

*:focus {
  outline: none;
}