/* feedback-widget.css */

#feedback-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
  border-radius: 10px 0 0 10px;
  width: 300px;
  transition: transform 0.3s ease, right 0.3s ease;
  z-index: 9999;
  font-family: sans-serif;
}

#feedback-panel.feedback-collapsed {
  right: -300px;
}

#feedback-tab {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #0078ff;
  color: white;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#feedback-content {
  padding: 10px;
}

#feedback-content h3 {
  margin-top: 0;
  font-size: 18px;
}

#feedback-content label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

#feedback-content select,
#feedback-content textarea {
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}

#feedback-content textarea {
  min-height: 160px;
}

#feedback-send {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: #0078ff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

#feedback-send:hover {
  background: #005fcc;
}

#feedback-status {
  margin-top: 8px;
  font-size: 14px;
}

.feedback-hint {
  font-size: 13px;
  color: #555;
  margin-top: -5px;
  margin-bottom: 10px;
  line-height: 1.4em;
}