@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&amp;family=Poppins:wght@500;600&amp;display=swap');

:root {
    --primary: #6366f1;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.font-display {
    font-family: 'Poppins', 'Inter', system_ui, sans-serif;
    font-weight: 600;
}

.soft-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.05),
        0 4px 6px -4px rgb(15 23 42 / 0.05);
    border: 1px solid #f1e7ff10;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.soft-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.08),
        0 8px 10px -6px rgb(15 23 42 / 0.08);
}

.section-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e2937;
    letter-spacing: -0.025em;
}



.status-badge {
    padding: 0.25rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    letter-spacing: -0.01em;
}

.table-row {
    transition: background-color 0.1s ease;
}

.table-row:hover {
    background-color: #f8fafc;
}

.metric-value {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    color: #0f172a;
}

.dashboard-bg {
    background: linear-gradient(to bottom, #f8fafc, #f1e7ff08);
}

.modal {
    animation: modalPopIn 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPopIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.soft-shadow {
    box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.05),
        0 4px 6px -4px rgb(15 23 42 / 0.05);
}

.whatsapp-green {
    color: #25D366;
}

.crm-table {
    border-collapse: separate;
    border-spacing: 0;
}

.crm-table thead th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #475569;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.number-pill {
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.number-pill.active {
    background-color: #6366f1;
    color: white;
    box-shadow: 0 4px 6px -1px rgb(99 102 241 / 0.3);
}

.toast {
    animation: toastSlideIn 0.3s ease forwards;
}

/* Login Specific Styles */
.bg-pattern {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%234f46e5" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}