/* Webica Labs CRM — Custom Styles */

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Smooth transitions for interactive elements */
button, a, input, select, textarea {
    transition: all 0.15s ease;
}

/* Focus ring reset for a cleaner look */
*:focus {
    outline: none;
}

/* Kanban card hover lift */
.lead-card:hover {
    transform: translateY(-1px);
}

/* Mobile search */
@media (max-width: 768px) {
    .kanban-column {
        min-height: auto;
    }
}
