/* Editor geral */
.note-editor.note-frame {
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Área de edição */
.note-editing-area {
    background-color: #ffffff;
    /* Claro */
    color: #111827;
    /* text-gray-900 */
    border-radius: 0.5rem;
    /* rounded-lg */
    padding: 1rem;
    /* p-4 */
    min-height: 16rem;
    /* h-64 */
}

.dark .note-editing-area {
    background-color: #1f2937;
    /* bg-gray-800 */
    color: #f9fafb;
    /* text-gray-50 */
}

/* Barra de ferramentas */
.note-toolbar {
    background-color: transparent;
    border: none;
    padding: 0.5rem;
    /* p-2 */
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Botões da barra */
.note-toolbar .note-btn {
    background-color: #f3f4f6;
    /* bg-gray-100 */
    color: #1f2937;
    /* text-gray-800 */
    border: none;
    border-radius: 0.375rem;
    /* rounded-md */
    padding: 0.5rem 0.75rem;
    /* px-3 py-2 */
    font-size: 0.875rem;
    /* text-sm */
    transition: all 0.2s;
}

.note-toolbar .note-btn:hover,
.note-toolbar .note-btn:focus {
    background-color: #e5e7eb;
    /* bg-gray-200 */
}

/* Tema escuro botões */
.dark .note-toolbar .note-btn {
    background-color: #374151;
    /* bg-gray-700 */
    color: #f9fafb;
    /* text-gray-50 */
}

.dark .note-toolbar .note-btn:hover,
.dark .note-toolbar .note-btn:focus {
    background-color: #4b5563;
    /* bg-gray-600 */
}

/* Dropdowns do toolbar */
.note-popover .popover-content,
.note-dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    /* border-gray-300 */
    border-radius: 0.5rem;
    /* rounded-lg */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.dark .note-popover .popover-content,
.dark .note-dropdown-menu {
    background-color: #374151;
    border-color: #4b5563;
    /* border-gray-600 */
}

/* Placeholder */
.note-placeholder {
    color: #9ca3af;
    /* text-gray-400 */
}

/* Ajustes do frame */
.note-statusbar {
    display: none;
    /* Remove barra de redimensionamento */
}