html,
body {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: var(--base-dark-font-color);
}

:root {
  --base-dark-font-color: #5c5c5c;
  --base-light-font-color: #fff;
  --base-light-background-color: #fff;
  --navbar-background-color: #6259c3;
}

button {
  cursor: pointer;
}

.navbar {
  position: relative;
  height: 60px;
  width: 100%;
  min-height: 3.5rem;
  color: var(--base-light-font-color);
  background-color: var(--navbar-background-color);
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.navbar-left-section {
  display: flex;
  height: 100%;
  align-items: center;
  margin-left: 2rem;
  justify-content: space-between;
  width: 13rem;
}

.menu-cont {
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: none;
}

.menu-cont:active,
.menu-cont:focus {
  outline-color: var(--base-light-font-color);
}

.menu-visible {
  display: block;
}

.menu-cont .bar {
  height: 4px;
  width: 2rem;
  background-color: var(--base-light-background-color);
  margin: 0.3rem 0;
  border-radius: 100px;
}

.navbar-right-section {
  align-items: center;
  display: flex;
  margin-right: 8rem;
  visibility: hidden;
}

.sidebar {
  width: 25%;
  min-width: 18rem;
  height: calc(100vh - 60px);
  background: var(--base-light-background-color);
  position: absolute;
  top: 60px;
  left: 0;
  transition: transform 0.3s ease-out;
  transform: translateX(-100%);
  text-align: left;
  overflow-y: auto;
}

.sidebar h3 {
  text-align: center;
}

.sidebar .report-list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.report-list li {
  padding: 1rem;
  border-bottom: 1px solid lightgrey;
  cursor: pointer;
  background-color: var(--base-light-background-color);
}

.report-list li:first-child {
  border-top: 1px solid lightgrey;
}

.report-list li:hover {
  filter: brightness(0.9);
}

.sidebar-visible {
  transform: translateX(0);
  box-shadow: 10px 0px 35px 5px grey;
}

.btn {
  padding: 10px 1rem;
  background: #cf4332;
  border: none;
  border-radius: 5px;
  color: var(--base-light-font-color);
  font-weight: bold;
  text-align: center;
  align-self: center;
  box-shadow: 0 2px 8px 0 #403f9e;
  transition: background 0.3s ease-out;
}

.btn:hover,
.selected-report {
  filter: brightness(0.9);
}

.ed-navbar-image-logo {
  position: relative;
  top: 0;
  width: 109px;
  height: 42px;
  background-image: url("/logo.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.container {
  height: calc(100vh - 60px);
}

.name-container {
  margin-right: 1rem;
}

.report-container,
#edyst-report {
  width: 100%;
  height: 100%;
}

.form-container {
  position: absolute;
  width: 100%;
  max-width: 400px;
  display: none;
  padding: 2rem;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 200px;
  text-align: left;
  border-radius: 5px;
  box-shadow: 0 2px 19px 0 #676767;
}

.form-container > form {
  display: flex;
  flex-direction: column;
}

.login-form > input {
  padding: 10px;
  border: 1px solid lightgray;
  border-radius: 5px;
  box-shadow: 0 2px 5px 0 rgb(163, 163, 163);
  margin: 0.5rem auto;
  width: 100%;
  color: #5c5c5c;
  box-sizing: border-box;
}
.login-form > label {
  color: #5c5c5c;
}

.login-form .submit-btn {
  max-width: 150px;
  background-color: #536dfa;
  color: white;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.loader {
  width: 70px;
  height: 70px;
  display: none;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#error-msg {
  color: red;
  text-align: center;
  margin: auto;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
}

@media screen and (max-width: 786px) {
  .navbar-left-section {
    margin-left: 1rem;
  }
  .navbar-right-section {
    margin-right: 1rem;
  }
}
