/**
 * Quill Text Alignment Styles
 * Ensures aligned content displays correctly in preview
 */

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

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

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

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

/* Table Styles for Quill Editor */
.ql-editor table {
    border-collapse: collapse;
    width: 100%;
    margin: 16px 0;
}

.ql-editor table th,
.ql-editor table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.ql-editor table th {
    background: #f5f5f5;
    font-weight: 600;
}

.ql-editor table tr:nth-child(even) td {
    background: #fafafa;
}

.ql-editor table tr:hover td {
    background: #f0f7ff;
}

