#feedback-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #3498db;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transition: all 0.3s ease;
}

#feedback-btn:hover {
  background-color: #2980b9;
}

.feedback-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

#feedback-form input,
#feedback-form textarea,
#feedback-form select {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

#feedback-form button[type="submit"] {
  background-color: #27ae60;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

#feedback-form button[type="submit"]:hover {
  background-color: #1e874b;
}

.rating {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.rating input {
  display: none;
}

.rating label {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
}

.rating input:checked ~ label,
.rating input:hover ~ label,
.rating label:hover {
  color: #f1c40f;
}