﻿/* Custom styles for content editor */
.content-editor-container .editor-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 14px;
}

    .content-editor-container .editor-content h1 {
        font-size: 2em;
        font-weight: bold;
        margin: 1em 0;
    }

    .content-editor-container .editor-content h2 {
        font-size: 1.5em;
        font-weight: bold;
        margin: 0.83em 0;
    }

    .content-editor-container .editor-content h3 {
        font-size: 1.17em;
        font-weight: bold;
        margin: 0.67em 0;
    }

    .content-editor-container .editor-content h4 {
        font-size: 1em;
        font-weight: bold;
        margin: 0.5em 0;
    }

    .content-editor-container .editor-content p {
        margin: 0.5em 0;
    }

    .content-editor-container .editor-content ul {
        list-style-type: disc;
        margin: 0.5em 0;
    }

    .content-editor-container .editor-content ol {
        list-style-type: decimal;
        margin: 0.5em 0;
    }

    .content-editor-container .editor-content li {
        margin: 0.25em 0;
    }

    .content-editor-container .editor-content blockquote {
        border-left: 4px solid #ccc;
        margin: 1em 0;
        padding-left: 1em;
        color: #666;
        font-style: italic;
    }

    .content-editor-container .editor-content code {
        background-color: #f4f4f4;
        padding: 2px 4px;
        border-radius: 3px;
        font-family: 'Courier New', monospace;
    }

    .content-editor-container .editor-content pre {
        background-color: #f4f4f4;
        padding: 10px;
        border-radius: 5px;
        overflow-x: auto;
        margin: 1em 0;
    }

/* Toolbar styles */
.editor-toolbar .btn-group {
    border-radius: 0.25rem;
    overflow: hidden;
}

.editor-toolbar .btn {
    border: 1px solid #dee2e6;
    background-color: white;
}

    .editor-toolbar .btn:hover {
        background-color: #e9ecef;
        border-color: #adb5bd;
    }

    .editor-toolbar .btn:active {
        background-color: #dee2e6;
        border-color: #adb5bd;
    }
