#editor {
    min-height: 180px;
    max-height: 350px;
    min-width: 100%;
    max-width: 100%;
    overflow-y: auto;
    border: none;
    border-radius: 0;
    background: #e5e7eb;
    font-size: 1rem;
    padding: 12px 12px 8px 12px;
    box-shadow: none;
    border-bottom: 2px solid rgba(37, 99, 235, 0.25);
    transition: 
        border-bottom-color 0.25s cubic-bezier(.4,0,.2,1),
        background 0.25s cubic-bezier(.4,0,.2,1);
}
#editor:focus-within {
    border-bottom: 2.5px solid rgba(37, 99, 235, 0.7);
    background: #f8fafc;
}
.ql-toolbar.ql-snow {
    border: none;
    border-radius: 0;
    background: #f3f4f6;
    padding: 4px 8px;
    box-shadow: none;
    transition: background 0.25s cubic-bezier(.4,0,.2,1);
}
.ql-container.ql-snow {
    border: none;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    background: transparent;
}


#editor::-webkit-scrollbar {
    width: 8px;
}

#editor::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

#editor::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 10px;
    border: 2px solid #f3f4f6;
}

.filepond--credits {
    display: none !important;
}