/* 탑마케팅 기본 스타일 컴포넌트 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input, textarea, [contenteditable] {
    cursor: text !important;
}

a, button, [role="button"], .btn, [onclick],
.user-menu, .dropdown-toggle,
.nav-menu a, .feature-link, .rocket-launch-btn {
    cursor: pointer !important;
}

html body #quill-editor .ql-editor,
html body #quill-editor .ql-editor *,
html body #quill-editor .ql-editor p,
html body #quill-editor .ql-editor span,
html body #quill-editor .ql-editor div,
html body #quill-editor .ql-editor strong,
html body #quill-editor .ql-editor em,
html body #quill-editor .ql-editor u,
html body .ql-editor,
html body .ql-editor *,
html body .ql-container,
html body .ql-container *,
body #quill-editor .ql-editor,
body #quill-editor .ql-editor *,
body .ql-editor,
body .ql-editor *,
body .ql-container,
body .ql-container * {
    cursor: text !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    pointer-events: auto !important;
}

input, textarea, select, [contenteditable] {
    cursor: text !important;
}

p, span, div, h1, h2, h3, h4, h5, h6, label, td, th {
    cursor: default !important;
}


