/* Ogólne style dla Quill */
.ql-container {
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    height: 100%;
    margin: 0;
    position: relative;
}

.ql-editor {
    box-sizing: border-box;
    height: 100%;
    overflow-y: auto;
    padding: 12px;
    tab-size: 4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Style dla justowania tekstu */
.ql-align-left {
    text-align: left;
}

.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.ql-align-justify {
    text-align: justify;
}

/* Style dla pogrubienia, kursywy i podkreślenia */
.ql-bold {
    font-weight: bold;
}

.ql-italic {
    font-style: italic;
}

.ql-underline {
    text-decoration: underline;
}

.ql-strike {
    text-decoration: line-through;
}

/* Style dla nagłówków */
.ql-header-1 {
    font-size: 2em;
    font-weight: bold;
}

.ql-header-2 {
    font-size: 1.5em;
    font-weight: bold;
}

/* Listy */
.ql-list {
    padding-left: 1.5em;
}

.ql-list-ordered {
    list-style-type: decimal;
}

.ql-list-bullet {
    list-style-type: disc;
}

/* Cytaty */
.ql-blockquote {
    border-left: 4px solid #ccc;
    margin: 0;
    padding-left: 1em;
}

/* Kod */
.ql-code {
    background-color: #f3f3f3;
    font-family: monospace;
    padding: 4px;
}

.ql-code-block {
    background-color: #f3f3f3;
    font-family: monospace;
    padding: 4px;
    white-space: pre;
}

/* Linki */
.ql-link {
    color: #007bff;
    text-decoration: underline;
}

/* Wyróżnienia kolorów */
.ql-color-red {
    color: red;
}

.ql-color-blue {
    color: blue;
}

.ql-color-green {
    color: green;
}

/* Wyróżnienia tła */
.ql-background-yellow {
    background-color: yellow;
}

.ql-background-gray {
    background-color: gray;
}

/* Obrazy */
.ql-image {
    max-width: 100%;
    height: auto;
}

/* Wyrównanie obrazków */
.ql-align-center img {
    display: block;
    margin: 0 auto;
}

/* Wyróżnienie tekstu jako cytat */
.ql-indent-1 {
    margin-left: 1em;
}

.ql-indent-2 {
    margin-left: 2em;
}
