/* CSS for Vue 3 Editor */
.resize-none {
    resize: none !important;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

textarea#vue-editor {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    background-color: #f8f9fa;
    color: #212529;
}

textarea#vue-editor:focus {
    outline: none;
    box-shadow: none;
    background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .d-flex.flex-column.p-0.mx-auto {
        height: auto !important;
    }
    .flex-grow-1.d-flex.overflow-hidden {
        flex-direction: column;
        overflow: visible !important;
    }
    .w-50 {
        width: 100% !important;
        height: 50vh !important;
    }
    .vr.text-secondary {
        display: none;
    }
    #preview-frame {
        border-top: 1px solid #dee2e6;
    }
}
