/* ============================================
   AUTOMD NEW DESIGN - avtomd-style.css
   New design styles, independent from old site
   Breakpoint: 1440px | Encoding: UTF-8
   ============================================ */

/* TOP BAR */
#amd-topbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 33px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99999;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

/* LANGUAGE BUTTON - left corner, 66px wide, full bar height */
#amd-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 33px;
  background-color: #111111;
  text-decoration: none;
  flex-shrink: 0;
}

/* FLAG IMAGE - opacity controlled via JS hover */
#amd-lang-flag {
  display: block;
}

/* RIGHT SIDE - pushes logout to far right */
#amd-topbar-right {
  margin-left: auto;
}

/* LOGOUT BUTTON - right corner, 110px wide, full bar height */
#amd-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 110px;
  height: 33px;
  background-color: #111111;
  text-decoration: none;
  color: #cccccc;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

/* LOGOUT TEXT - always 100% visible, bold */
#amd-logout-text {
  display: block;
  opacity: 1;
  font-weight: bold;
  text-decoration: none;
  transition: text-decoration 0.25s ease;
}

/* LOGOUT ICON - always 100% visible */
#amd-logout-icon {
  display: block;
  opacity: 1;
}

/* LOGOUT HOVER - underline text only */
#amd-logout-btn:hover #amd-logout-text {
  text-decoration: underline;
}
