/* Feedback Modal Styles */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.feedback-modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feedback-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.feedback-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.feedback-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.feedback-modal-close:hover {
  background-color: #f3f4f6;
  color: #111827;
}

#feedbackForm {
  padding: 1.5rem;
}

.feedback-form-group {
  margin-bottom: 1.5rem;
}

.feedback-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.feedback-form-group select,
.feedback-form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feedback-form-group select:focus,
.feedback-form-group textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.feedback-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.feedback-char-count {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: right;
}

.feedback-form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.feedback-form-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.feedback-form-actions .btn-secondary {
  background: #f3f4f6;
  color: #374151;
}

.feedback-form-actions .btn-secondary:hover {
  background: #e5e7eb;
}

.feedback-form-actions .btn-primary {
  background: #0ea5e9;
  color: white;
}

.feedback-form-actions .btn-primary:hover {
  background: #0284c7;
}

.feedback-form-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Feedback Button (Floating) */
.feedback-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0ea5e9;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 9999;
  transition: all 0.2s;
}

.feedback-button:hover {
  background: #0284c7;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.feedback-button svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .feedback-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .feedback-button span {
    display: none;
  }

  .feedback-modal-content {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fbbf24;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.coming-soon-content {
  display: flex;
  gap: 1rem;
  align-items: center; /* Center vertically for single-line layout */
  flex-wrap: nowrap; /* Prevent wrapping to keep on single line */
}

.coming-soon-content svg {
  color: #d97706;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.coming-soon-content > div {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between "Coming Soon" label and message */
  flex-wrap: nowrap; /* Keep label and message on same line */
}

.coming-soon-content strong {
  display: inline; /* Change from block to inline for single-line */
  color: #92400e;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0; /* Remove bottom margin */
  white-space: nowrap; /* Prevent wrapping */
}

.coming-soon-content p {
  display: inline; /* Change from block to inline for single-line */
  margin: 0;
  color: #78350f;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .coming-soon-banner {
    padding: 0.875rem 1rem;
    margin-bottom: 1.5rem;
  }

  .coming-soon-content {
    gap: 0.75rem;
  }

  .coming-soon-content svg {
    width: 20px;
    height: 20px;
  }
}

