/* 简洁版访问统计样式（与网站风格一致） */

/* 统计列表布局 */
.stats-list {
    margin: 15px 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
}

/* 标签样式 */
.stat-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* 数值样式 */
.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
    min-width: 60px;
    text-align: center;
}

/* 更新时间样式 */
.stats-footer {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.update-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 12px;
}

.time-icon {
    font-size: 12px;
}

.time-text {
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .stat-row {
        padding: 8px 0;
    }
    
    .stat-label,
    .stat-value {
        font-size: 13px;
    }
    
    .stat-value {
        padding: 3px 8px;
        min-width: 50px;
    }
}