.tiptap.ProseMirror {
  padding: 25px;
  padding-top: 30px;
  margin-bottom: 20px;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-top: none;
  font-size: 16px;
  font-weight: 400;
  min-height: 150px;
  max-height: 670px;
  overflow: auto;
}

.tiptap.ProseMirror:focus-visible {
  outline: 0;
}

.richtext-modal p,
.rte-p {
  line-height: 24px;
  font-size: 14px;
  margin-top: 0;
  font-weight: 400;
}

.tableWrapper {
  overflow-x: auto;
  margin: 16px 0;
}

.tableWrapper table {
  border-collapse: collapse;
  width: 100%;
  min-width: 500px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
}

/* Cells */
.tableWrapper th,
.tableWrapper td {
  border: 1px solid #d0d0d0;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}

/* Header row */
.tableWrapper th {
  background-color: #f5f5f5;
  font-weight: 600;
}

/* Zebra striping */
.tableWrapper tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover effect */
.tableWrapper tbody tr:hover {
  background-color: #f0f7ff;
}

/* Make empty cells visible */
.tableWrapper td:empty::after,
.tableWrapper th:empty::after {
  content: " ";
  display: inline-block;
  min-height: 1em;
}
