/* Custom styles for Uplinex Lead CRM & Intelligence */

:root {
    --uplinex-blue: #0284c7;
    --uplinex-dark: #0f172a;
    --uplinex-accent: #0080FF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Card hover transitions */
.company-card {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

/* Update highlight pulse */
.update-highlight {
    border-color: #f59e0b !important;
    background-color: #fffdfa !important;
}

/* Notification badge animation */
@keyframes notif-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
.notif-pulse {
    animation: notif-pulse 2s infinite ease-in-out;
}
