@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

#dropzone {
    transition: all 0.3s ease;
}

#dropzone.drag-over {
    border-color: #818cf8;
    background-color: #f8fafc;
}

.font-preview-char {
    font-size: 2rem;
    line-height: 1;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.font-preview-char:hover {
    background-color: #eef2ff;
    transform: scale(1.1);
}

pre {
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.875rem;
}