/* Contact Cards Styles - Business card view styles */

/* Cards Container */
.cards-container {
    display: none;
    padding: 32px;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    background: #e2e8f0;
    min-height: calc(100vh - 300px);
}

/* Business Card */
.business-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.business-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: #ffffff;
}

/* Card Header */
.card-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.card-name {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    margin-top: 4px;
}

.card-company {
    font-size: 16px;
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Card Info */
.card-info {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 13px;
    color: #334155;
}

.card-info i {
    margin-right: 12px;
    width: 16px;
    color: #64748b;
    font-size: 12px;
}

/* Card Footer */
.card-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #dee2e6;
    font-size: 11px;
    color: #64748b;
}

/* Card Category Badge */
.card-category {
    display: inline-block;
    background: #1e3c72;
    color: white;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 8px 0 12px 0;
}

/* New Badge */
.new-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 0 8px 0 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Info Banner */
.info-banner {
    grid-column: 1 / -1;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.info-banner h3 {
    color: #1e3c72;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-banner p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.info-stats {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.info-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #475569;
}

.info-stat i {
    color: #94a3b8;
}

/* Business Card Modal Variant */
.business-card-modal {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: none;
}

.business-card-modal .card-category {
    background: rgba(255,255,255,0.2);
}

.business-card-modal .card-header {
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.business-card-modal .card-company {
    color: white;
    font-size: 20px;
}

.business-card-modal .card-name {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.business-card-modal .card-info {
    color: white;
}

.business-card-modal .card-info i {
    color: rgba(255,255,255,0.8);
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #64748b;
    background: white;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
