.user-icon {
    filter: brightness(0) invert(1);
}

.header-text .acronym {
  display: none;
}

.icon--disabled {
  filter: grayscale(1) opacity(0.5);
  pointer-events: none;
  cursor: not-allowed;
}

.dropdown-menu {
    right: 0 !important;
    left: auto !important;
    transform: translateX(+10px) !important; /* Adjust this value to move it left */
}

.search-container {
  position: relative;
  width: 350px;
  margin: 0 auto;
}

#search-input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 4px;
}

#search-results {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #bbb;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}

#search-results li {
  padding: 10px;
  cursor: pointer;
}

#search-results li:hover {
  background: #f0f0f0;
}

.watermark-container {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.watermark-image {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90vh;
  width: auto;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.watermark-container::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 102, 255, 0.2);
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.maintenance-container {
  position: relative;
  z-index: 3;
  text-align: center;
  pointer-events: auto;
}

.maintenance-image {
  margin-top: 200px;
  max-width: 100%;
  height: auto;
}

.maintenance-message {
  color: #0088cc;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .header-text .full-name {
    display: none;
  }
  .header-text .acronym {
    display: inline;
    color: #ffffff;
    text-decoration: none;
  }
}
