/* Feedback Button Control Styles */

.vv-feedback-control {
  position: fixed !important;
  bottom: 20px;
  left: 20px;
  margin: 0 !important;
  z-index: 1;
  transition: all 0.3s ease;
  border-radius: 16px !important;
  overflow: hidden;
}

/* Desktop and larger tablets */
@media (min-width: 768px) {
  .vv-feedback-control {
    bottom: 20px;
    left: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .vv-feedback-control {
    bottom: 20px; /* Bottom left on mobile */
    left: 20px;
  }
}

.vv-feedback-button {
  min-width: 56px;
  min-height: 56px;
  width: clamp(50px, 8vw, 64px);
  height: clamp(50px, 8vw, 64px);
  border: 2px solid #e0e0e0;
  background: white;
  color: #333;
  cursor: pointer;
  border-radius: 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.vv-feedback-button:hover {
  background: #f5f5f5;
  border-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vv-feedback-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.vv-feedback-button svg {
  display: block;
  width: 60%;
  height: 60%;
  margin: auto;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.vv-feedback-button:hover svg {
  transform: scale(1.1);
}

/* Override any MapLibre button group styles */
.vv-feedback-control button {
  border-radius: 16px !important;
}

