/* Leaf Info Widget */
.leaf-widget {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}
.leaf-bubble {
  background: #2e7d32;
  color: #fff;
  padding: 14px 18px;
  border-radius: 24px 24px 24px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  max-width: 280px;
  border: 2px solid #1b5e20;
  position: relative;
}
.leaf-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 24px;
  width: 20px;
  height: 20px;
  background: #2e7d32;
  border-left: 2px solid #1b5e20;
  border-bottom: 2px solid #1b5e20;
  transform: rotate(45deg);
  border-bottom-left-radius: 6px;
}
.leaf-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.leaf-text {
  font-size: 0.95rem;
}
.leaf-footer {
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.85;
}
.leaf-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
.leaf-hide-btn {
  background: transparent;
  border: 1px solid #c8e6c9;
  color: #c8e6c9;
  border-radius: 20px;
  padding: 2px 10px;
  cursor: pointer;
}
.leaf-next-btn {
  background: #66bb6a;
  border: none;
  color: #fff;
  border-radius: 20px;
  padding: 2px 10px;
  cursor: pointer;
}
.leaf-hidden { display: none; }
