/* === LEFT CORNER MENU === */
.leftCornerMenu {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  backdrop-filter: blur(10px) saturate(150%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === BUTTONS === */
.leftCornerMenuButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.leftCornerMenuButton:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transform: scale(1.05);
}

/* === VARIANTS === */
.clearButton {
  background: linear-gradient(135deg, #4d79ff, #63a4ff);
}
.clearButton:hover {
  background: linear-gradient(135deg, #3b5bdb, #0040ff);
}
.downloadButton {
  background: linear-gradient(135deg, #4dbeff, #00eaff);
}
.downloadButton:hover {
  background: linear-gradient(135deg, #00bcd4, #00796b);
}

/* === ICON EFFECT === */
.leftCornerMenuButton i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.leftCornerMenuButton:hover i {
  transform: rotate(10deg) scale(1.1);
}

/* === MOBILE VERSION === */
@media (max-width: 768px) {
  .leftCornerMenu {
    bottom: 10px;
    left: 10px;
    padding: 6px;
    gap: 6px;
    border-radius: 12px;
  }

  .leftCornerMenuButton {
    flex-direction: column;
    padding: 6px;
    font-size: 0; /* ukryj tekst */
    width: 42px;
    height: 42px;
    border-radius: 50%;
    gap: 0;
  }

  .leftCornerMenuButton i {
    font-size: 20px;
    margin: 0;
  }

  .leftCornerMenuButton span {
    display: none; /* ukryj napisy */
  }
}
