#feedback-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  z-index: 1000; /* Ensure it's above other content */
}

#feedback-form-container {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: gray;
  border: 1px solid white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: none; /* Hidden by default */
}

#feedback-form textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
}
