.editor-container {
    
    display:flex;
    flex-direction: column;
    height: 100%;
    margin: auto;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 15px;
    color: black;
    font-size: 2vh;
    text-align: right;
    background-color: #DDD;
    
}
.toolbar {
    margin-bottom: 10px;
    direction: ltr;
    
}
.toolbar button, .toolbar select {
    padding: 5px;
    margin-right: 5px;
    font-size: 14px;
    cursor: pointer;
    text-align: right;
}
.editor {
    border: 1px solid #ccc;
    padding: 10px;
    flex-grow: 1; /* מאפשר ל-editor להתפשט לגובה הפנוי */
    resize: none;
    outline: none;
    direction: rtl;
    background-color: rgb(255, 255, 255);
    overflow-y: auto;
    direction: rtl;
    text-align: right;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    min-height: 100px;
    padding: 10px;
}
#outputTextarea {
    direction: rtl;
    text-align: right;
    width: 100%;
    min-height: 100px;
    padding: 10px;
    font-family: Arial, sans-serif;
}
.editor:focus {
    border-color: #666;
}
textarea {
    display: none; /* מסתיר את ה-textarea */
    width: 700px;
    height: 200px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .editor {
        min-height: 500px;
    }
}