.feedback-widget-wrapper {
  position: fixed;
  z-index: 99999;
}

.feedback-widget-wrapper.top-left {
  top: 20px;
  left: 20px;
}

.feedback-widget-wrapper.top-right {
  top: 20px;
  right: 20px;
}

.feedback-widget-wrapper.bottom-left {
  bottom: 20px;
  left: 20px;
}

.feedback-widget-wrapper.bottom-right {
  bottom: 20px;
  right: 20px;
}

.feedback-widget-buttons {
  cursor: auto;
  display: flex;
  gap: 6px;
}

.feedback-widget-btn {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0066cc;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feedback-widget-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  color: #666;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.feedback-modal-content {
  cursor: auto;
  background: white;
  color: black;
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
  z-index: 10;
}

.feedback-modal h2 {
  margin: 0 0 20px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 20px;
}

.feedback-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.feedback-btn {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}

.feedback-btn:hover {
  background: #f5f5f5;
}

.feedback-btn.selected {
  border-color: #0066cc;
  color: #0066cc;
}

.feedback-comment {
  width: 100%;
  height: 100px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 16px;
  font-family: inherit;
  resize: none;
}

.feedback-submit {
  font-weight: bold;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  background: #0066cc;
  color: white;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.feedback-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.feedback-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}