/* Common Form Styles for Admin Forms */

/* === Form Row Styles === */
.faq-form-row {
  clear: both;
  margin-top: 30px;
}

.faq-form-wrapper {
  margin-top: 10px;
}

/* === Thumbnail Styles === */
.faq-thumbnail {
  max-width: 200px;
  max-height: 150px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.faq-thumbnail-large {
  max-width: 300px;
  max-height: 200px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* === Back Link Styles === */
.faq-back-link {
  color: white;
  text-decoration: none;
}

.faq-back-link:hover {
  color: white;
  text-decoration: underline;
}

/* === Video URL Row === */
.video-url-row {
  /* Default visible */
}

.video-url-row.hidden {
  display: none;
}

/* === Form Actions === */
.faq-form-actions {
  /* Add any specific styles for form action buttons if needed */
}

/* === Quill Editor Styles === */
.quill-editor-wrapper {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.quill-editor-wrapper #faq_answer_editor {
  min-height: 200px;
  max-height: 400px;
}

.quill-editor-wrapper .ql-container {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: auto;
  min-height: 200px;
  max-height: 400px;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

.quill-editor-wrapper .ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  min-height: 200px;
  max-height: 400px;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.quill-editor-wrapper .ql-toolbar {
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
  border-top: none;
  border-left: none;
  border-right: none;
}

.quill-editor-wrapper .ql-container.ql-snow {
  border: none;
}

.quill-editor-wrapper .ql-toolbar.ql-snow {
  border: none;
  border-bottom: 1px solid #ccc;
}

