/* Navbar styles moved from layout.css and inline styles */
.navbar {
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  z-index: 999;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0.25rem 0.5rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand img {
  max-height: 250px;
  height: auto;
  max-width: 125px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
}

.logo-img {
  height: 30px;
  width: auto;
  max-height: 30px;
  margin-right: 8px;
  object-fit: contain;
  vertical-align: middle;
  padding-top: 15px;
}

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px !important;
  }
  }


@media (max-width: 768px) {
  .navbar {
    padding: 15px !important;
    height: auto !important;
  }
  .navbar .navbar-brand {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }
  .navbar .navbar-brand img {
    max-height: 40px;
    max-width: 80px;
    margin-bottom: 5px;
  }
  .navbar .navbar-toggler {
    margin: 10px 0;
  }
  .navbar a {
    font-size: 0.9rem;
    padding: 8px 0 !important;
  }
}

.errorlist {
  color: red;
}

.notification {
  color: #1ac888;
  border-color: #1ac888;
  border-style: solid;
  margin: 0.75rem;
  padding: 0.75rem;
  border-radius: 20px;
  border-width: 1px;
}

/* Override unwanted padding-top on body */
body {
  padding-top: 0 !important;
}