#bistra-panel {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 400ms ease-out;
  border: 1px solid #cacaca;
  background: white;
}
#bistra-panel .header {
  height: 55px;
  line-height: 1;
  padding: 5px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #607f57;
  color: white;
  font-weight: bold;
  border-bottom: 1px solid #cacaca;
}
#bistra-panel .header .avatar {
  width: 45px;
  height: 45px;
  border: 2px solid #a8c69f;
  background: white;
  border-radius: 50%;
}
#bistra-panel .header .avatar img { width: 100%; }
#bistra-panel .header .actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
#bistra-panel .header .actions .action {
  cursor: pointer;
}
#bistra-panel.opaque { opacity: 1 }

#bistra-root {
  position: fixed;
  bottom: 45px;
  right: 45px;
  z-index: 10000;
}

#bistra-fab {
  cursor: pointer;
  position: fixed;
  bottom: 25px;
  right: 45px;
  z-index: 10000;
  transition: opacity 400ms ease-out;
  width: 82px;
  height: 82px;
  border: 2px solid #88a67f;
  border-radius: 50%;
}
#bistra-fab.transparent { opacity: 0; }
#bistra-fab img { width: 100%; }
