.crm-company-card {
    background: white;
    border: 2px solid #253356; /* Platform blue border */
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #253356;
    text-decoration: none;
    transition: all 0.2s ease;
}

.crm-company-card:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 51, 86, 0.15);
    border-color: #1a2238;
}

.crm-company-card .company-name {
    font-weight: 600;
    font-size: 0.98rem;
}

.crm-jumpnav {
    position: sticky;
    top: 60px; /* below header */
    z-index: 5;
    background: transparent;
}

.btn[data-country-btn].active,
.btn[data-classification].active,
.btn[data-alpha].active {
    background: #2C3E50;
    color: white;
}

@media (max-width: 576px) {
    .crm-company-card {
        padding: 0.6rem 0.8rem;
        border-radius: 8px;
    }
    .crm-company-card .company-name {
        font-size: 0.92rem;
    }
}


