/* Feedback Widget Styles */
.feedback-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  background: #1565c0;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feedback-fab:hover { background: #0d47a1; }

.feedback-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.feedback-modal {
  width: 95%;
  max-width: 560px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: fb-slide-in 0.25s ease;
}

.feedback-header {
  background: #1565c0;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback-header h3 { margin: 0; font-size: 18px; }

.feedback-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.feedback-body { padding: 16px 18px; }

.feedback-row { display: flex; gap: 12px; }
.feedback-row > * { flex: 1; }

.feedback-field { margin-bottom: 12px; }
.feedback-field label { display: block; font-weight: 600; margin-bottom: 6px; color: #111; }
.feedback-field input,
.feedback-field select,
.feedback-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111;
  box-sizing: border-box;
}

.feedback-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.feedback-submit {
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.feedback-submit:hover { background: #1b5e20; }

.feedback-secondary {
  background: #eef2ff;
  color: #1f2937;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 600;
  cursor: pointer;
}
.feedback-secondary:hover { background: #e0e7ff; }

.feedback-toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 90px;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: none;
  z-index: 10002;
}

@keyframes fb-slide-in {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
