﻿.compose-mail-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compose-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 0 !important;
    overflow: hidden;
}

.compose-edit-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

/* Quill wrapper — fills available space */
.quill-editor-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    border-bottom: 1px solid #dee2e6;
}

    /* Toolbar */
    .quill-editor-wrapper .ql-toolbar {
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 1px solid #dee2e6;
        background: #f8f9fa;
        flex-shrink: 0;
    }

    /* Editor body — scrollable */
    .quill-editor-wrapper .ql-container {
        border: none;
        flex: 1;
        overflow-y: auto;
        font-size: 14px;
        font-family: inherit;
    }

    .quill-editor-wrapper .ql-editor {
        min-height: 200px;
        padding: 12px 15px;
    }

        /* Quoted reply/forward block */
        .quill-editor-wrapper .ql-editor .quoted-body {
            margin-top: 15px;
            padding: 10px 12px;
            border-left: 3px solid #ccc;
            background: #f9f9f9;
            font-size: 13px;
            color: #555;
        }

.new-mail-foot {
    margin-top: auto;
    padding: 10px 0;
    flex-shrink: 0;
}
