.font-bold {
    font-weight: 700;
}

.ticket_list > tbody > tr.text-left > th {
      background-color: #7366ff !important;
      color: #fff !important;
}

table th {
    background-color: #7366ff !important;
    color: #fff !important;
}

body:not(.dark) .form-quill-editor .ql-toolbar,
body:not(.dark) .form-quill-editor .ql-toolbar * {
    background: #fff !important;
    color: #222 !important;
    border-color: #e5e7eb !important;
    fill: #222 !important;
    stroke: #222 !important;
    background-image: none !important;
    box-shadow: none !important;
}
body:not(.dark) .form-quill-editor .ql-container,
body:not(.dark) .form-quill-editor .ql-editor {
    background: #fff !important;
    color: #222 !important;
    border-color: #e5e7eb !important;
}

body.dark .form-quill-editor .ql-toolbar,
body.dark .form-quill-editor .ql-toolbar * {
    background: #23272f !important;
    color: #f9fafb !important;
    border-color: #444 !important;
    fill: #f9fafb !important;
    stroke: #f9fafb !important;
    background-image: none !important;
    box-shadow: none !important;
}
body.dark .form-quill-editor .ql-container,
body.dark .form-quill-editor .ql-editor {
    background: #23272f !important;
    color: #f9fafb !important;
    border-color: #444 !important;
}

.form-quill-editor .ql-editor {
    min-height: 120px !important;
}

body.dark .form-quill-editor .ql-toolbar .ql-stroke {
    stroke: #f9fafb !important;
}
body.dark .form-quill-editor .ql-toolbar .ql-fill {
    fill: #f9fafb !important;
}
body:not(.dark) .form-quill-editor .ql-toolbar .ql-stroke {
    stroke: #222 !important;
}
body:not(.dark) .form-quill-editor .ql-toolbar .ql-fill {
    fill: #222 !important;
}

/* Force Quill toolbar/header to be white in light mode, dark in dark mode, and remove any background images */
body:not(.dark) .form-quill-editor .ql-snow .ql-toolbar {
    background: #fff !important;
    color: #222 !important;
    border-color: #e5e7eb !important;
}
body.dark .form-quill-editor .ql-snow .ql-toolbar {
    background: #23272f !important;
    color: #f9fafb !important;
    border-color: #444 !important;
}

/* Override Quill Snow theme variables for toolbar */
body:not(.dark) .form-quill-editor .ql-snow {
    --ql-toolbar-background: #fff !important;
    --ql-toolbar-color: #222 !important;
}
body.dark .form-quill-editor .ql-snow {
    --ql-toolbar-background: #23272f !important;
    --ql-toolbar-color: #f9fafb !important;
}

/* Apply variables to toolbar */
body:not(.dark) .form-quill-editor .ql-toolbar.ql-snow {
    background: var(--ql-toolbar-background, #fff) !important;
    color: var(--ql-toolbar-color, #222) !important;
}
body.dark .form-quill-editor .ql-toolbar.ql-snow {
    background: var(--ql-toolbar-background, #23272f) !important;
    color: var(--ql-toolbar-color, #f9fafb) !important;
}