/* ============================================
   拨打记录页特有样式
   适配青少年友好配色方案
============================================ */

.history-list {
    flex: 1;
    padding: 12px 20px;
    overflow-y: auto;
}

/* 历史记录卡片 */
.history-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(95, 184, 120, 0.05);
}

.history-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.history-phone {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.history-time {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.call-count {
    background: var(--border-light);
    color: var(--primary-color);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
}