/* Custom styles for transcription service */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Smooth transitions */
.state {
    transition: opacity 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Drop zone animation */
#dropZone {
    transition: all 0.2s ease;
}

#dropZone:hover {
    border-color: #818cf8;
    background-color: #eef2ff;
}

/* Progress bar animation */
#progressBar {
    transition: width 0.3s ease;
}

/* Spinner */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Table */
table {
    border-collapse: collapse;
}

td, th {
    white-space: nowrap;
}
