/* Alignment */
.ql-align-center {
    text-align: center;
  }
  .ql-align-right {
    text-align: right;
  }
  .ql-align-justify {
    text-align: justify;
  }
  .ql-align-left {
    text-align: left;
  }
  
  /* Bold, Italic, Underline */
  .ql-bold {
    font-weight: bold;
  }
  .ql-italic {
    font-style: italic;
  }
  .ql-underline {
    text-decoration: underline;
  }
  
  /* Strike-through */
  .ql-strike {
    text-decoration: line-through;
  }
  
  /* Blockquote */
  .ql-blockquote {
    border-left: 4px solid #ccc;
    margin: 1em 0;
    padding-left: 1em;
    color: #666;
  }
  
  /* Headers */
  .ql-header-1 {
    font-size: 2em;
    font-weight: bold;
  }
  .ql-header-2 {
    font-size: 1.5em;
    font-weight: bold;
  }
  .ql-header-3 {
    font-size: 1.17em;
    font-weight: bold;
  }
  
  /* Lists */
  .ql-list-ordered {
    list-style-type: decimal;
    margin-left: 1.5em;
  }
  .ql-list-bullet {
    list-style-type: disc;
    margin-left: 1.5em;
  }
  .ql-list-item {
    margin: 0.5em 0;
  }
  
  /* Code blocks */
  .ql-code-block {
    font-family: monospace;
    background-color: #f4f4f4;
    padding: 0.5em;
    border-radius: 4px;
  }
  
  /* Links */
  .ql-link {
    color: blue;
    text-decoration: underline;
  }
  
  /* Image */
  .ql-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
  }
  
  /* Video */
  .ql-video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
  }
  
  /* Custom Font Sizes */
  .ql-size-small {
    font-size: 0.75em;
  }
  .ql-size-large {
    font-size: 1.5em;
  }
  .ql-size-huge {
    font-size: 2.5em;
  }
  
  /* Text Color */
  .ql-color-red {
    color: red;
  }
  .ql-color-blue {
    color: blue;
  }
  .ql-color-green {
    color: green;
  }
  
  /* Background Color */
  .ql-background-red {
    background-color: red;
  }
  .ql-background-blue {
    background-color: blue;
  }
  .ql-background-green {
    background-color: green;
  }
  
  /* Indentation */
  .ql-indent-1 {
    margin-left: 1em;
  }
  .ql-indent-2 {
    margin-left: 2em;
  }
  .ql-indent-3 {
    margin-left: 3em;
  }
  .ql-indent-4 {
    margin-left: 4em;
  }
  