/* ==========================================================================
   Notifications and Miscellaneous
   ========================================================================== */

   .open-comm-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.open-comm-btn img {
    transform: scaleX(-1);
    width: 40px;
}

.open-comm-btn button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.open-comm-btn button:hover {
    background: #0056b3;
}

.no-border.ql-container.ql-snow {
    border: none !important;
}

.inlineHeader {
    display: block ruby;
    cursor: pointer;
}

.inlineHeader img {
    width: 26px;
    margin-bottom: -7px;
    margin-right: 5px;
}

.ql-snow .ql-editor pre.ql-syntax {
    background-color: cornflowerblue !important;
    color: #000 !important;
    font-size: 1.4em;
}

.ql-snow .ql-editor blockquote {
    font-size: 1.3em;
}

pre {
    border-left: none;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    color: white;
    z-index: 2000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.notification.info {
    background-color: #2196f3;
}

.notification.error {
    background-color: #f44336;
}

.notification.warning {
    background-color: #ff9800;
}