@keyframes pulse-border {
    0%, 100% { border-color: rgba(229, 9, 20, 0.3); }
    50% { border-color: rgba(229, 9, 20, 0.8); }
}

.task-polling {
    animation: pulse-border 2s ease-in-out infinite;
}

.result-card {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #141414;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #111827 inset !important;
    -webkit-text-fill-color: #e5e7eb !important;
}

/* Mobile touch targets */
@media (max-width: 640px) {
    button, a, select {
        min-height: 40px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    select {
        font-size: 16px; /* prevents iOS zoom on focus */
    }
}

/* Truncate long emails on small screens */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
