/* 卡片视图样式 */
.clients-cards {
    display: none;
    gap: 15px;
    flex-direction: column;
}

.client-card {
    background: var(--white-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.client-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.client-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.client-card-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    margin: 0;
}

.client-card-status {
    margin-left: 8px;
}

.client-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.client-card-detail {
    display: flex;
    flex-direction: column;
}

.client-card-label {
    font-size: 12px;
    color: var(--gray-color);
    margin-bottom: 4px;
    font-weight: 500;
}

.client-card-value {
    font-size: 14px;
    color: var(--dark-color);
}

.client-card-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}