/* Style tùy chỉnh cho File Manager v3.0 */
/* Hiện tại Tailwind đã đáp ứng đủ, bạn có thể bổ sung CSS vào đây sau này */

.tab-content {
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tùy chỉnh thanh cuộn cho CodeMirror */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar {
    background: transparent;
}