/* 添加到现有style.css文件中 */

/* 图标按钮样式 */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
}

.btn-icon .material-icons {
    font-size: 18px;
}

/* 表格操作按钮容器 */
.table-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 图标单元格 */
.icon-cell {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 统计卡片悬停效果 */
.stat-card {
    transition: all 0.3s ease;
    cursor: default;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 章节标题 */
.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.section-header .material-icons {
    color: var(--primary-color);
    font-size: 24px;
}

.section-header h3 {
    margin: 0;
    color: var(--on-surface);
    font-weight: 500;
}

/* 管理员徽章 */
.admin-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* 状态图标 */
.status-online .material-icons,
.status-offline .material-icons,
.status-banned .material-icons {
    font-size: 14px;
    vertical-align: middle;
}

/* 空状态样式 */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-state .material-icons {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
}

/* 响应式图标调整 */
@media (max-width: 768px) {
    .btn-icon {
        padding: 6px 12px;
    }
    
    .btn-icon .material-icons {
        font-size: 16px;
    }
    
    .section-header .material-icons {
        font-size: 20px;
    }
    
    .table-actions {
        flex-direction: column;
        gap: 5px;
    }
}