/* Custom styles beyond Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* Progress bar animation */
@keyframes progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.progress-animate {
    animation: progress-pulse 1.5s ease-in-out infinite;
}

/* Table row hover */
table tbody tr {
    transition: background-color 0.15s ease;
}

/* Smooth transitions for sidebar links */
aside nav a {
    transition: all 0.15s ease;
}

/* File drop zone active state */
#drop-zone.dragover {
    border-color: #0F766E;
    background-color: #F0FDFA;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 50;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.toast.success { background-color: #0F766E; }
.toast.error { background-color: #DC2626; }
