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

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

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

.word-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#visualization {
    min-height: 400px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}
svg text {
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

/* Error state styles */
.bg-red-50 {
    background-color: #fef2f2;
}
.text-red-700 {
    color: #b91c1c;
}
@media (max-width: 768px) {
    #visualization {
        min-height: 300px;
    }
}
@media (max-width: 640px) {
    #wordCloud {
        justify-content: center;
    }
}