:root {
    --primary-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
}
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
    color: #333;
}

.create-post-btn {
    margin-bottom: 20px;
    text-align: right;
}

.btn {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    opacity: 0.9;
}
        

        
main {
    flex: 1;
    padding: 0.8rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow-y: auto;
}
        

/* Глобальные правила для Summernote контента */
.note-editable,
.note-editable *,
.summernote-content,
.summernote-content * {
    /* Сбрасываем глобальные ограничения */
    font-size-adjust: none;
    -webkit-text-size-adjust: none;
}

/* Сохраняем точные размеры из Summernote */
.note-editable [style*="font-size"],
.summernote-content [style*="font-size"] {
    font-size: inherit !important;
}

/* JavaScript fallback для сохранения стилей */
.summernote-content .note-font-size-8 { font-size: 8px !important; }
.summernote-content .note-font-size-9 { font-size: 9px !important; }
.summernote-content .note-font-size-10 { font-size: 10px !important; }
.summernote-content .note-font-size-11 { font-size: 11px !important; }
.summernote-content .note-font-size-12 { font-size: 12px !important; }
.summernote-content .note-font-size-14 { font-size: 14px !important; }
.summernote-content .note-font-size-16 { font-size: 16px !important; }
.summernote-content .note-font-size-18 { font-size: 18px !important; }
.summernote-content .note-font-size-20 { font-size: 20px !important; }
.summernote-content .note-font-size-22 { font-size: 22px !important; }
.summernote-content .note-font-size-24 { font-size: 24px !important; }
.summernote-content .note-font-size-26 { font-size: 26px !important; }
.summernote-content .note-font-size-28 { font-size: 28px !important; }
.summernote-content .note-font-size-30 { font-size: 30px !important; }
.summernote-content .note-font-size-32 { font-size: 32px !important; }
.summernote-content .note-font-size-34 { font-size: 34px !important; }
.summernote-content .note-font-size-36 { font-size: 36px !important; }
.summernote-content .note-font-size-40 { font-size: 40px !important; }
.summernote-content .note-font-size-48 { font-size: 48px !important; }
.summernote-content .note-font-size-56 { font-size: 56px !important; }
.summernote-content .note-font-size-64 { font-size: 64px !important; }
.summernote-content .note-font-size-72 { font-size: 72px !important; }
 
