/* Standard heading sizes for Tailwind */
h1 {
    @apply text-5xl font-bold;
}

h2 {
    @apply text-4xl font-bold;
}

h3 {
    @apply text-3xl font-semibold;
}

h4 {
    @apply text-2xl font-semibold;
}

h5 {
    @apply text-xl font-medium;
}

h6 {
    @apply text-lg font-medium;
}


#content ~ .ck p{
  min-height : 250px;
}

table tr td , table tr th {
    padding : 0.5rem 1rem !important;
}

table tr td.big > div, table tr th.big > div{
    max-width: 8rem;
}

table tr td > div , table tr th > div {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width : 5rem;
}

table tr td:last-child > div , table tr th:last-child > div {
  max-width : unset;
}