/**
 * Tiptap Editor Styles
 * Minimal styling for comment editor with bold and bullet points
 */

/* Editor container */
.tiptap-editor-wrapper {
  border: 1px solid #fcd34d; /* yellow-300 */
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
}

.tiptap-editor-wrapper:focus-within {
  border-color: #eab308; /* yellow-500 */
  box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.2);
}

/* Editor content area */
.tiptap-content {
  outline: none;
  color: #1f2937; /* gray-800 */
  line-height: 1.6;
}

.tiptap-content p {
  margin: 0;
  padding: 0;
}

.tiptap-content p:not(:last-child) {
  margin-bottom: 0.5rem;
}

/* Text formatting */
.tiptap-content strong {
  font-weight: 600;
  color: #92400e; /* amber-800 */
}

.tiptap-content em {
  font-style: italic;
}

.tiptap-content u {
  text-decoration: underline;
}

/* Lists */
.tiptap-content ul,
.tiptap-content ol {
  padding-left: 1.5rem !important;
  margin: 0.5rem 0 !important;
  list-style-position: inside;
}

.tiptap-content li {
  margin: 0.25rem 0;
  display: list-item !important;
}

.tiptap-content ul {
  list-style-type: disc !important;
}

.tiptap-content ol {
  list-style-type: decimal !important;
}

/* Ensure nested lists work */
.tiptap-content li p {
  display: inline;
}

/* Placeholder */
.tiptap-content p.is-editor-empty:first-child::before {
  content: attr(data-placeholder);
  float: left;
  color: #9ca3af; /* gray-400 */
  pointer-events: none;
  height: 0;
}

/* Toolbar */
.tiptap-toolbar {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem;
  border-bottom: 1px solid #fcd34d;
  background: #fef3c7; /* yellow-100 */
  border-radius: 0.5rem 0.5rem 0 0;
}

.tiptap-toolbar-btn {
  padding: 0.375rem 0.75rem;
  border: 1px solid #fcd34d;
  border-radius: 0.375rem;
  background: white;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tiptap-toolbar-btn:hover {
  background: #fef9e7;
  border-color: #eab308;
}

.tiptap-toolbar-btn.is-active {
  background: #fcd34d;
  border-color: #eab308;
  color: #78350f;
}

.tiptap-toolbar-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Display mode (when showing saved comments) */
.tiptap-display {
  line-height: 1.6;
}

.tiptap-display p {
  margin: 0;
}

.tiptap-display p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.tiptap-display strong {
  font-weight: 600;
}

.tiptap-display em {
  font-style: italic;
}

.tiptap-display u {
  text-decoration: underline;
}

.tiptap-display ul,
.tiptap-display ol {
  padding-left: 1.5rem !important;
  margin: 0.5rem 0 !important;
  list-style-position: inside;
}

.tiptap-display li {
  margin: 0.25rem 0;
  display: list-item !important;
}

.tiptap-display ul {
  list-style-type: disc !important;
}

.tiptap-display ol {
  list-style-type: decimal !important;
}

.tiptap-display li p {
  display: inline;
}




/*# sourceMappingURL=project.b167a15708e4bd86daa2.css.map*/