/**
 * Editor Styles for Business AI Theme
 * Makes the Gutenberg editor match the light theme
 */

/* Editor background */
.editor-styles-wrapper {
    background-color: #ffffff;
    color: #18181b;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Headings */
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
    color: #18181b;
    font-weight: 700;
}

/* Paragraphs and text */
.editor-styles-wrapper p {
    color: #52525b;
    line-height: 1.8;
}

/* Links */
.editor-styles-wrapper a {
    color: #7c3aed;
}

.editor-styles-wrapper a:hover {
    color: #5b21b6;
}

/* Lists */
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
    color: #52525b;
}

/* Blockquote */
.editor-styles-wrapper blockquote {
    border-left: 4px solid #7c3aed;
    padding-left: 1.5rem;
    color: #52525b;
    font-style: italic;
}

/* Code */
.editor-styles-wrapper code {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.editor-styles-wrapper pre {
    background: #f4f4f5;
    color: #18181b;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
}

/* Buttons */
.editor-styles-wrapper .wp-block-button__link {
    background: #7c3aed;
    color: #ffffff;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Images */
.editor-styles-wrapper img {
    border-radius: 12px;
}

/* Separator */
.editor-styles-wrapper hr {
    border-color: #e4e4e7;
}

/* Table */
.editor-styles-wrapper table {
    border-color: #e4e4e7;
}

.editor-styles-wrapper th,
.editor-styles-wrapper td {
    border-color: #e4e4e7;
    color: #18181b;
}

.editor-styles-wrapper th {
    background: rgba(124, 58, 237, 0.05);
}
