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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif !important;
}

.myhr {
  margin: 1rem auto;
  width: 15%;
}

#topbtn {
  display: none;
  position: fixed;
  bottom: 55px;
  right: 30px;
  border-radius: 50%;
}

#bottombtn {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 30px;
  border-radius: 50%;
}

.logo {
  width: 150px;
}

main {
  margin-top: 70px;
}

.inheritColor {
  color: inherit;
}

#screen {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.toastContainer {
  top: 55px;
  width: 200px;
}

/* Navbar Styling */

.navbar {
  background-color: #455a64 !important;
}

.navbar-nav {
  flex-direction: row !important;
  flex-wrap: wrap;
}

.nav-underline li a {
  color: white !important;
  border-bottom: none !important;
  position: relative;
}

.nav-underline li a.active {
  color: white !important;
}

.nav-underline li a:hover {
  color: orange !important;
}

.nav-underline li a.active::after {
  width: 100%;
  opacity: 1;
  background-color: white;
}

.nav-underline li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  opacity: 0;
  height: 2px;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.nav-underline li a:hover::after {
  width: 100%;
  opacity: 1;
  background-color: orange;
}
