@tailwind base;
@tailwind components;
@tailwind utilities;


.sidebar-group-btn {
    @apply w-full flex items-center justify-between px-3 py-2 hover:bg-gray-100 rounded transition;
}

.sidebar-group-label {
    @apply flex items-center space-x-2 font-medium text-gray-700;
}

.sidebar-icon {
    @apply w-5 h-5 text-gray-600;
}

.sidebar-chevron {
    @apply w-4 h-4 text-gray-500 transition-transform;
}

.sidebar-group-links {
    @apply ml-6 mt-1 space-y-1;
}

.dashboard-quick-btn {
    @apply flex items-center gap-3 p-4 bg-white rounded-xl shadow hover:shadow-lg text-gray-800 hover:bg-gray-50 transition cursor-pointer;
}

/* Estilos para listas en Jodit Editor */
.jodit-wysiwyg ul,
.jodit-wysiwyg ol {
    margin: 1em 0;
    padding-left: 2em;
}

.jodit-wysiwyg ul {
    list-style-type: disc;
}

.jodit-wysiwyg ol {
    list-style-type: decimal;
}

.jodit-wysiwyg ul ul,
.jodit-wysiwyg ol ol,
.jodit-wysiwyg ul ol,
.jodit-wysiwyg ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.jodit-wysiwyg li {
    margin: 0.25em 0;
    line-height: 1.5;
}



