﻿/* Make Summernote toolbar buttons/icons clearly visible */
.note-editor .note-toolbar {
    background: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
}

    .note-editor .note-toolbar .note-btn {
        background-color: #ffffff;
        color: #444; /* icon/text color */
        border-color: #d0d0d0;
        opacity: 1; /* make sure they’re fully visible */
    }

        /* Icons inside the buttons */
        .note-editor .note-toolbar .note-btn i,
        .note-editor .note-toolbar .note-btn .note-icon-caret {
            color: #444;
        }

        /* Hover state – a bit stronger, but still consistent with app palette */
        .note-editor .note-toolbar .note-btn:hover {
            background-color: var(--default-button-bg-hover);
            color: #000;
            border-color: #c0c0c0;
        }

.language-switcher .nav-link {
    padding: 2px 6px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}
