body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.editor-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.toolbar {
    display: flex;
    padding: 10px;
    background-color: #f1f1f1;
}

.toolbar button, .toolbar select, .toolbar input {
    margin-right: 10px;
    padding: 5px;
}

#editor {
    min-height: 400px;
    padding: 20px;
    border: 1px solid #ddd;
}

.file-manager {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    z-index: 1000;
}

.heading-btns {
    display: flex;
    margin-right: 10px;
}

.heading-btns button {
    padding: 5px;
    margin-right: 5px;
    font-weight: bold;
}

/* Editörde başlıkların görünümü */
#editor h1 { font-size: 2em; }
#editor h2 { font-size: 1.5em; }
#editor h3 { font-size: 1.3em; }
#editor h4 { font-size: 1.2em; }
#editor h5 { font-size: 1.1em; }
#editor h6 { font-size: 1em; }

#editor {
    user-select: text; /* Metni seçilebilir kılar */
    -webkit-user-select: text;
    -moz-user-select: text;
}