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

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

.dropzone {
    border: 2px dashed #9CA3AF;
    transition: all 0.3s ease;
}

.dropzone.active {
    border-color: #4F46E5;
    background-color: #EEF2FF;
}

.note-card {
    transition: all 0.2s ease;
}

.note-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ocr-result {
    min-height: 200px;
    background-color: #F9FAFB;
}