.feedback-form {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-top: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feedback-form h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

.rating-group {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.rating-group label {
  width: 100px;
  font-weight: 500;
  font-size: 14px;
}

.rating-stars {
  display: flex;
}

.star {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  margin-right: 4px;
  transition: color 0.2s;
}

.star:hover {
  color: #ffc107;
}

.star.selected {
  color: #ffc107;
}

.comments-group {
  margin-bottom: 16px;
}

.comments-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}

.comments-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  font-family: inherit;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.submit-button, .cancel-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.submit-button {
  background-color: #4caf50;
  color: white;
}

.submit-button:hover {
  background-color: #45a049;
}

.submit-button:disabled {
  background-color: #a5d6a7;
  cursor: not-allowed;
}

.cancel-button {
  background-color: #f5f5f5;
  color: #333;
}

.cancel-button:hover {
  background-color: #e0e0e0;
}

.cancel-button:disabled {
  color: #999;
  cursor: not-allowed;
}

.status-message {
  padding: 8px;
  border-radius: 4px;
  margin-top: 10px;
  font-size: 14px;
}

.status-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-message.error {
  background-color: #ffebee;
  color: #c62828;
}
