html[data-bs-theme=dark] .note-editor .note-btn-group .dropdown-toggle:after {
    display: none;
}

html[data-bs-theme=dark] .note-editor .note-btn-group {
    font-size: 14px;
}

html[data-bs-theme=dark] .note-editor .note-input {
    background-color: #ffffff !important;
    border-color: #ccc !important;
}

html[data-bs-theme=dark] .note-editor .note-form-label {
    color: #6d6d6d !important;
}

html[data-bs-theme=dark] .note-editor .text-muted {
    color: #888888 !important;
}

.note-editor .close {
    opacity: .7;
}


/* --- Galeria de Imagens Simples e Responsiva --- */
.summernote.media-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0px;
    margin-bottom: 0px;
}

.summernote.media-gallery img {
    max-width: 100%;
    height: auto;
    display: block;
    flex: 1 1 calc(33.33% - 15px);
    min-width: 100px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
    .summernote.media-gallery img {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .summernote.media-gallery img {
        flex: 1 1 100%;
    }
}

.summernote.audio-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.summernote.audio-list .audio-item {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summernote.audio-list .audio-item audio {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.summernote.audio-list .audio-item p {
    font-size: 0.9em;
    color: #6c757d;
    word-wrap: break-word;
}

.summernote.video-container {
    margin: 20px auto;
    max-width: 600px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    display: block;
}

.summernote.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: black;
    border-radius: 4px;
}

.summernote.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.summernote.video-container p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
    text-align: center;
    word-wrap: break-word;
}

.summernote img {
    max-width: 100%;
}

.note-modal.open {
    display: block;
    background-color: rgba(30, 60, 90, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1060 !important;
}