/* Общие стили */
body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding-top: 80px;
    background-image: url('../assets/img/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    transition: opacity 0.6s ease;
  }

.LM1-widget {
  position: relative;
  display: inline-block;
}

/* Кнопка‑иконка */
.LM1-account-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Меню */
.LM1-account-menu {
  width: max-content;
  position: absolute;
  top: 100%;
  right: -35px;
  transform: translateY(4px);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 180, 180, 0.4);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 12px;
  display: none;
  flex-direction: column;
  z-index: 1000;


  transition: all 0.3s ease;
}


.LM1-menu-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 4px 4px;
  font-size: 14px;
  cursor: pointer;
  color: #333;
  width: 100%;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.LM1-menu-btn:hover {
  background: rgba(0,0,0,0.05);
}


.LM1-hidden { display: none !important; }
.LM1-show   { display: flex !important; }