/* Feedback Button Styles */
.feedback-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.feedback-button a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}

.feedback-button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background-color: #333;
}

.feedback-button svg {
  width: 18px;
  height: 18px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .feedback-button {
    bottom: 20px;
    right: 20px;
  }
  
  .feedback-button a {
    padding: 10px 16px;
  }
  
  .feedback-button span {
    display: none;
  }
  
  .feedback-button a {
    padding: 12px;
    border-radius: 50%;
  }
  
  .feedback-button svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }
}
