.row-top{
  display: flex;
  height: 70%;
}
.left{
  background: #FFF;
  padding: 0 10px 20px 10px;
}
div#fuaListHeader {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.fua-list {
  margin: 0;
  padding-left: 18px; /* ettől lesz a pont helye */
}

.fua-item {
  margin: 4px 0;
}
.button-container{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
  padding: 10px 10px 0 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
.button-row {
  display: flex;
  flex: 1;
}
.button-container button{
  width: 100%;
  padding: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 5px;
  border: 1px solid #919191;
  background: #FFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0); /* a GPU gyorsítás miatt */
}
.fua-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}
img.fua-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #919191;
}
.fua-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  align-items: flex-start;
  text-align: left;
}
.subtext{
  font-size: 13px;
  display: block;
  margin-top: 2px;
}
.fua-btn:hover .fua-text-content {
  max-height: 200px; /* később finomítható */
  opacity: 1;
  padding-top: 8px;
}
.fua-btn.active .fua-text-content {
  max-height: 200px; /* később finomítható */
  opacity: 1;
  padding-top: 8px;
}
.fua-text-header{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-direction: row;
  text-align: center;
}
.fua-text-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.button-container button:hover{
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #5f5f5f;
}
#fuaListToggleButton{
  position: absolute;
  left: 100%;
  top: 50%;
  display: flex;
  width: 14px;
  height: 63px;
  padding: 10px 9px 9px 9px;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-radius: 0 4px 4px 0;
  background: #FFF;
  /*box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 0.16);*/
  z-index: 99999;
  cursor: pointer;
  transition: width 0.25s ease;
}
#fuaListToggleButton.collapsed{
  left: 0;
}
#fuaListPanel{
  transition: width 0.25s ease;
  width: 27%;
  left: 0;
  z-index: 10;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
}
#fuaListPanel.collapsed {
  width: 0;
  padding: 0;
}
#fuaListPanel.collapsed #fuaListHeader,
#fuaListPanel.collapsed .button-container {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}